/* HERO - Home Page Banner */
.hero {
    padding: 16rem 1.5rem;
    text-align: center;
    background-color: #000;
    background-image: 
        linear-gradient(to bottom, rgba(10, 10, 11, 0.4), var(--bg-body)),
        url('/assets/img/hero_dark.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Subtle Zoom Animation for Hero Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: inherit;
    z-index: -1;
    animation: heroZoom 20s infinite alternate ease-in-out;
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-overline {
    font-family: var(--font-accent);
    text-transform: uppercase;
    letter-spacing: 0.4rem;
    font-size: 0.85rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    display: block;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin: 0;
    color: var(--color-text-dark);
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
    animation: fadeInUp 1s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 1.5rem auto 3rem;
    color: var(--color-text-main);
    animation: fadeInUp 1s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-footer-text {
    margin-top: 4rem;
    font-size: 0.9rem;
    font-family: var(--font-accent);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

@media (max-width: 768px) {
    .hero {
        padding: 10rem 1.5rem;
        min-height: 60vh;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 1rem;
    }
}
