@font-face {
    font-family: 'Headliner45';
    src: url('../fonts/headliner-no45.ttf') format('truetype');
    font-display: swap;
}

/* Hero Section - Full-Width Split Layout */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background-color: var(--color-darker);
}

/* Background Handling for Split Layout - Full Width Right Side */
.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: contrast(100%) brightness(0.9);
    /* Softer blend from dark on left to full image on right */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 35%);
    mask-image: linear-gradient(to right, transparent 0%, black 35%);
}

.hero-video {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: contrast(100%) brightness(0.9);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 35%);
    mask-image: linear-gradient(to right, transparent 0%, black 35%);
}

/* Left side solid background - no longer needed, handled by section bg */
.hero-section::before {
    display: none;
}

.hero-overlay {
    display: none;
    /* Not needed with split layout approach */
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    max-width: none;
    padding-top: var(--header-height);
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.hero-main {
    width: 100%;
    display: block;
}

/* Text Container - Left Side */
.hero-text-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: left;
}

.hero-title {
    font-family: 'Rubik Wet Paint', 'Rubik Glitch', 'Anton', 'Headliner45', 'Bebas Neue', var(--font-heading), sans-serif;
    font-size: clamp(7.5rem, 11vw, 12rem);
    font-weight: 900;
    letter-spacing: -12.5px;
    line-height: 0.92;
    color: #85ff00;
    filter: url('#hero-grunge');
    white-space: nowrap;
}

/* Saved previous hero style reference:
.hero-title--saved {
    font-family: 'Anton', 'Headliner45', 'Bebas Neue', var(--font-heading), sans-serif;
    color: #72ff72;
    letter-spacing: -12.5px;
    line-height: 0.92;
    filter: url('#hero-grunge');
}
*/

.hero-description {
    max-width: 55%;
    margin: 0;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.5rem;
    line-height: 1.25;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

/* ... */

/* Hero Footer / Next Drop */
.hero-footer {
    position: absolute;
    bottom: 6rem;
    left: 0;
    right: 0;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.next-drop {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 1.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.drop-label {
    color: var(--color-primary);
    margin-right: 0.5rem;
}

.drop-title {
    color: var(--color-white);
}

.hero-decoration .star-icon {
    color: var(--color-concrete);
    font-size: 2rem;
    opacity: 0.5;
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 8rem;
        white-space: normal;
    }

    .hero-footer {
        padding: 0 2rem;
    }

    .hero-text-container {
        max-width: 100%;
    }

    .hero-background,
    .hero-video {
        width: 100%;
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
        mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
        opacity: 0.75;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-title {
        font-size: 5rem;
        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-footer {
        position: relative;
        bottom: auto;
        margin-top: 4rem;
        padding: 0;
    }

    .hero-content {
        padding-top: 70px; /* Mobile header height */
    }
}

/* Small phones (480px and below) */
@media (max-width: 480px) {
    .hero-section {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-title {
        font-size: clamp(3rem, 15vw, 5rem);
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .next-drop {
        font-size: 1.25rem;
    }

    .hero-decoration {
        display: none;
    }
}

/* Extra small screens (320px) */
@media (max-width: 320px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 0;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-cta .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}
