/*
Theme Name: GUSTAVO Core
Author: Gustavo
Description: Official Dark Cinematic R&B Theme
Version: 1.0
Text Domain: gustavo-core
*/

/* --- יבוא הפונט --- */
@font-face {
  font-family: 'Melted Monster';
  src: url('./fonts/MeltedMonster.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* --- הגדרות בסיס - Dark Mode --- */
:root {
  --bg-dark: #0d0d0f;
  --text-main: #f3f3f3;
  --accent-color: #39ff14; /* ירוק ניאון, אפשר להחליף לכסף/לבן */
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, .gustavo-logo {
  font-family: 'Melted Monster', display;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* --- עיצוב ה-Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -2;
}

.video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(13, 13, 15, 0.7); /* מכהה את הסרטון */
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.gustavo-logo-text {
    font-size: 8rem;
    margin: 0 0 20px 0;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--text-main);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--text-main);
    color: var(--bg-dark);
}

/* --- עיצוב כללי לסקשנים --- */
section {
    padding: 100px 20px;
    text-align: center;
}

.section-title {
    font-size: 4rem;
    margin-bottom: 50px;
    color: #444; /* טקסט כהה שמשתלב ברקע */
}

/* --- הגריד של הארכיון --- */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.placeholder-cover {
    width: 100%;
    aspect-ratio: 1/1;
    background-color: #1a1a1c;
    border: 1px solid #333;
    transition: transform 0.3s;
}

.music-item:hover .placeholder-cover {
    transform: scale(1.02);
}

.music-item h3 {
    margin: 15px 0 5px 0;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.music-item p {
    margin: 0;
    color: #777;
    font-size: 0.9rem;
}

/* --- ה-Inner Circle --- */
.vip-form {
    display: flex;
    max-width: 500px;
    margin: 30px auto;
}

.vip-form input {
    flex-grow: 1;
    padding: 15px;
    background: transparent;
    border: 1px solid #333;
    color: #fff;
    outline: none;
}

.vip-form button {
    padding: 15px 30px;
    background: var(--text-main);
    color: var(--bg-dark);
    border: none;
    font-weight: bold;
    cursor: pointer;
}
.cover-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.music-cover {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover; /* חותך את התמונה לריבוע מושלם */
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.music-item:hover .music-cover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.15); /* הילת ניאון עדינה במעבר עכבר */
}

/* --- Header & Navigation --- */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(13,13,15,0.9) 0%, rgba(13,13,15,0) 100%);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo a {
    font-family: 'Melted Monster', display;
    color: var(--text-main);
    text-decoration: none;
    font-size: 2rem;
    letter-spacing: 2px;
}

.main-navigation a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: var(--accent-color);
}

/* --- Footer --- */
.site-footer {
    border-top: 1px solid #333;
    padding: 40px 20px;
    background-color: #08080a;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #666;
}

.footer-social a {
    color: #666;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--text-main);
}
.release-type-text {
    margin: 0 0 15px 0 !important;
}

.platform-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.platform-links a {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
    border: 1px solid #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.platform-links a:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}