.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 18, 16, 0.5) 0%,
        rgba(15, 18, 16, 0.3) 40%,
        rgba(15, 18, 16, 0.7) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--container-padding);
    max-width: 800px;
}

.hero__title {
    font-size: var(--fs-3xl);
    font-weight: var(--fw-extrabold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero__subtitle {
    font-size: var(--fs-base);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-weight: var(--fw-regular);
    letter-spacing: 0.05em;
}

.hero__cta {
    margin-top: 1rem;
}

.hero__scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll-hint svg {
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.5);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@media (min-width: 768px) {
    .hero__title {
        font-size: var(--fs-4xl);
    }

    .hero__subtitle {
        font-size: var(--fs-lg);
    }
}

@media (min-width: 1024px) {
    .hero__title {
        font-size: var(--fs-5xl);
        letter-spacing: 0.15em;
    }

    .hero__subtitle {
        font-size: var(--fs-xl);
    }
}
