/* ============================================
   CINEMATIC HERO SECTION
   ============================================ */
.cinematic-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--spacing-4xl) var(--spacing-lg) 20vh;
    padding-top: 10vh;
    margin-top: 0;
    /* Remove any margin that might interfere */
}

.hero-aurora {
    position: absolute;
    inset: -50%;
    background: 
        radial-gradient(circle at 30% 50%, var(--accent-primary-glow) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(112, 0, 255, 0.25) 0%, transparent 50%);
    opacity: 0.6;
    filter: blur(60px);
    animation: auroraDrift 15s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
    transform-origin: center center;
}

@keyframes auroraDrift {
    from {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }

    to {
        transform: rotate(360deg) scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.cinematic-tracking {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.cinematic-glow {
    font-size: clamp(4rem, 10vw, 8rem);
    background: linear-gradient(to right, #ffffff, var(--accent-primary), var(--accent-secondary), #ffffff);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
    margin-bottom: var(--spacing-lg);
    line-height: 1;
    animation: textShine 6s linear infinite;
}

@keyframes textShine {
    to {
        background-position: 300% center;
    }
}

.hero-content .collection-text {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-tertiary);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.5;
}

.explore-btn {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-xl);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: #000;
    background: var(--accent-gradient);
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: var(--shadow-glow);
    transition: all var(--transition-bounce);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.explore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--shimmer-gradient);
    transition: all var(--transition-fast);
    z-index: -1;
}

.explore-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 40px var(--accent-primary-glow), 0 0 20px rgba(112, 0, 255, 0.6);
    color: #fff;
}

.explore-btn:hover::before {
    animation: shimmerSlide 0.6s ease-out;
}

/* ============================================
   RESPONSIVE HERO ADJUSTMENTS (Mobile)
   ============================================ */
@media (max-width: 768px) {
    .cinematic-hero {
        padding: var(--spacing-4xl) var(--spacing-md) 15vh;
        /* Reduced bottom padding */
        padding-top: 15vh;
        /* Increase top padding to clear mobile header */
    }

    .cinematic-glow {
        margin-bottom: var(--spacing-md);
        /* Tighter spacing below massive titles */
    }

    .hero-content .collection-text {
        font-size: 1.1rem;
        margin-bottom: var(--spacing-xl);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 12vh;
    /* Moved up slightly from var(--spacing-2xl) */
    color: var(--text-tertiary);
    width: 32px;
    height: 32px;
    z-index: 10;
    transition: all var(--transition-spring);
}

.scroll-indicator.subpage-arrow {
    bottom: 25vh;
    /* Move up significantly more on subpages */
}

.scroll-indicator:hover {
    color: var(--accent-primary);
    transform: translateY(-4px) scale(1.1);
    filter: drop-shadow(0 0 10px var(--accent-primary-glow));
    animation-play-state: paused;
    /* Pause the bounce on hover so the transform applies cleanly */
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-7px);
    }
}

/* ============================================
   CONTENT SECTION - Generic content area
   ============================================ */
.content {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-3xl) var(--spacing-lg);
}

.content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--spacing-2xl);
}

.content h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

.content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    color: var(--text-secondary);
}