/* --- VARIABLES & RESET --- */
:root {
    --bg-color: #050505;
    --primary-accent: #ff003c;
    --secondary-accent: #00f2ea;
    --text-light: #f5f5f5;
    --text-dark: #a0a0a0;
    --card-bg: #101010;
    --border-color: rgba(255, 255, 255, 0.1);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-light);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* --- OVERLAYS --- */
#noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJub2lzZSI+PGZlVHVyYnVsZW5jZSB0eXBlPSJmcmFjdGFsTm9pc2UiIGJhc2VGcmVxdWVuY3k9IjAuOCIgbnVtT2N0YXZlcz0iMyIgc3RpdGNoVGlsZXM9InN0aXRjaCIvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNub2lzZSkiIG9wYWNpdHk9IjAuMDUiLz48L3N2Zz4=);
    z-index: 1000;
}

#spotlight-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.03) 0%, transparent 20%);
    z-index: 999;
    transition: background 0.2s ease-out;
}


/* --- HEADER --- */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    z-index: 100;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: top 0.3s;
}

#main-header .header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#main-header .logo img {
    height: 25px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s;
}

#main-header .logo:hover img {
    opacity: 1;
}

#main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    margin-left: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s;
}

#main-nav a:hover {
    color: var(--primary-accent);
}

#mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}

/* --- HERO --- */
#hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#hero .hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#hero .hero-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.8) 0%, var(--bg-color) 95%);
}

#hero .hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 4vw, 1.5rem);
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
}

.hero-subtitle .separator {
    color: var(--primary-accent);
    font-weight: 700;
}

.cta-button {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    color: var(--text-light);
    background: transparent;
    border: 2px solid var(--primary-accent);
    padding: 0.8rem 2.5rem;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-button:hover {
    background: var(--primary-accent);
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.5);
    transform: translateY(-3px);
}


/* --- GENERAL SECTION STYLES --- */
.content-section {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-header h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 img {
    height: 35px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

/* --- GRID & CARDS --- */
.grid-container {
    display: grid;
    gap: 2rem;
}

/* Example for music grid */
#music-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

#crew-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* More specific card styles to come */


/* --- FOOTER --- */
footer {
    padding: 4rem 2rem;
    background: #000;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-content .social-links {
    margin-bottom: 1.5rem;
}

.footer-content .social-links a {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: color 0.3s, transform 0.3s;
}

.footer-content .social-links a:hover {
    color: var(--primary-accent);
    transform: translateY(-3px);
}

.footer-content p {
    color: #666;
    font-size: 0.8rem;
}

.footer-content .footer-credit {
    margin-top: 0.5rem;
}
.footer-content .footer-credit a {
    color: #888;
    text-decoration: none;
    font-weight: 700;
}
.footer-content .footer-credit a:hover {
    color: var(--primary-accent);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    #main-header {
        padding: 1rem;
    }
    #main-nav {
        display: none;
        /* Mobile nav styles will be added by JS */
    }
    #mobile-menu-btn {
        display: block;
        /* More styles for the button */
    }

    .content-section {
        padding: 4rem 1rem;
    }
}
