/* --- 1. VARIABLES & RESET --- */
:root {
    --color-black: #000000;
    --color-dark: #121212;
    --color-gray: #888888;
    --color-white: #ffffff;
    --font-main: 'Montserrat', sans-serif;
    --nav-height: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- 2. UTILITIES --- */
.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.bg-white { background-color: var(--color-white); color: var(--color-black); }
.bg-dark { background-color: var(--color-dark); color: var(--color-white); }
.bg-black { background-color: var(--color-black); color: var(--color-white); }
.text-black { color: var(--color-black); }
.text-white { color: var(--color-white); }

.section-pad {
    padding: 120px 0;
}

.section-title {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 60px;
    text-align: center;
}

/* --- 3. NAVIGATION --- */
.navbar {
    height: var(--nav-height);
    background: #000000; /* Solid black for better visibility */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #222;
}

.nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 80px; 
    width: auto;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-gray);
}

.btn-nav {
    border: 2px solid var(--color-white);
    padding: 10px 25px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: var(--color-white);
    color: var(--color-black) !important;
}

/* HAMBURGER MENU STYLES */
.hamburger {
    display: none; 
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: white;
}

/* --- 4. HERO SECTION (STACKED LAYOUT) --- */
/* This forces Video ON TOP and Text BELOW */
.hero {
    /* Allow height to grow naturally so nothing gets cut off */
    min-height: 100vh; 
    height: auto;
    
    display: flex;
    flex-direction: column; /* Stacks items vertically */
    justify-content: center;
    align-items: center;
    text-align: center;
    
    /* Push it down so it doesn't hide behind the navbar */
    padding-top: 140px; 
    padding-bottom: 60px;
    background-color: #000000;
}

/* Video Player Styling */
.hero-video {
    position: relative; /* No longer absolute */
    width: 100%;
    height: 60vh; /* Limits height so it fits on laptop screens */
    max-width: 800px; /* Prevents it from getting too huge on big screens */
    object-fit: contain; /* Shows full video with black bars if needed */
    margin-bottom: 40px; /* Space between video and text */
    z-index: 1;
}

.hero-overlay {
    display: none; /* We don't need the overlay anymore since text is separate */
}

/* Text Content Styling */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 20px;
}

.hero-main-logo {
    max-width: 500px; /* Slightly smaller logo to fit better */
    width: 80%;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
}

.btn-main {
    display: inline-block;
    padding: 15px 50px;
    background-color: var(--color-white);
    color: var(--color-black);
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-main:hover {
    transform: translateY(-5px);
    background-color: #ddd;
}

/* --- 5. ARTISTS & RELEASES GRIDS --- */
.artist-grid, 
.release-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.artist-card, 
.release-card {
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* Artist Card Specifics */
.artist-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    background-color: var(--color-black);
}

.artist-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: grayscale(100%);
}

.artist-card:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
    opacity: 0.8;
}

.artist-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--color-white);
}

.artist-info h3 {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.artist-info p {
    font-weight: 700;
    color: var(--color-gray);
    letter-spacing: 1px;
}

/* Release Card Specifics */
.cover-wrapper { 
    position: relative; 
    aspect-ratio: 1 / 1; 
    overflow: hidden; 
    margin-bottom: 20px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.4); 
}

.cover-wrapper img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.4s ease; 
}

.play-overlay { 
    position: absolute; 
    top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(0,0,0,0.7); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: white; 
    text-decoration: none; 
    font-weight: 700; 
    text-transform: uppercase; 
    font-size: 0.8rem; 
    opacity: 0; 
    transition: opacity 0.3s; 
}

.cover-wrapper:hover .play-overlay { opacity: 1; }
.cover-wrapper:hover img { transform: scale(1.05); }

.release-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
}

.release-artist { 
    color: var(--color-gray); 
    font-weight: 700; 
    font-size: 0.8rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    margin-bottom: 5px; 
}

.release-title { 
    font-size: 1.5rem; 
    font-weight: 900; 
    text-transform: uppercase; 
    letter-spacing: -0.5px; 
}

/* --- 6. ABOUT SPLIT SECTION --- */
.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-text {
    flex: 1;
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.split-text p {
    font-size: 1.1rem;
    color: var(--color-gray);
    margin-bottom: 20px;
}

.split-image {
    flex: 1;
    height: 600px;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(120%);
}

/* --- 7. FOOTER --- */
.footer {
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid #222;
}

.footer-logo {
    margin-bottom: 30px;
    opacity: 0.5;
    transition: opacity 0.3s;
}
.footer-logo:hover { opacity: 1;}

.contact-block {
    margin-bottom: 30px;
}

.footer-email {
    display: inline-block;
    color: #ffffff !important; 
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1.1rem;
    margin-top: 5px;
    transition: color 0.3s;
}

.footer-email:hover {
    color: var(--color-gray) !important;
}

.footer-links {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: var(--color-gray);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-links a:hover { color: var(--color-white); }

.copyright {
    color: #444;
    font-size: 0.9rem;
}

/* --- 8. DEMO PAGE STYLES --- */
.demo-section {
    padding-top: 150px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-container {
    max-width: 600px;
}

.demo-form label {
    display: block;
    color: var(--color-gray);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.demo-form input {
    width: 100%;
    padding: 20px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: var(--color-white);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

/* --- 9. MOBILE RESPONSIVE FIXES --- */
@media (max-width: 768px) {
    .hamburger { display: block; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 90px;
        gap: 0;
        flex-direction: column;
        background-color: #000000;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-bottom: 1px solid #333;
        padding-bottom: 20px;
    }
    .nav-links.active { left: 0; }
    .nav-links li { margin: 16px 0; }
    
    .section-title { font-size: 2.5rem; padding: 0 15px; }
    
    /* Hero Adjustments for Mobile */
    .hero {
        padding-top: 120px;
        min-height: auto; /* Let it grow */
    }
    .hero-video {
        height: 50vh; /* Make video slightly smaller on phones so text shows */
        margin-bottom: 20px;
    }
    .hero h1 { font-size: 1.2rem; padding: 0 10px; margin-bottom: 20px; }
    .hero-main-logo { max-width: 80%; }
    
    .split-layout { flex-direction: column; gap: 40px; }
    .split-text { padding: 0 20px; text-align: center; }
    .split-image { height: 300px; width: 100%; }
    
    .demo-section { padding-top: 150px; }
    .demo-container { width: 90%; }
    
    .footer-links { flex-direction: column; gap: 15px; }

    /* FORCED 2-BY-2 GRID FOR MOBILE */
    .artist-grid, 
    .release-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px; 
    }

    .artist-card {
        height: 250px; 
    }

    .artist-info, 
    .release-info {
        padding: 10px; 
    }

    .artist-info h3, 
    .release-title {
        font-size: 1.1rem; 
    }

    .artist-info p, 
    .release-artist {
        font-size: 0.75rem; 
    }
}