/* ============================================
   ELSA GRAY - Hero Section
   Clean, Minimal Style
   ============================================ */

/* ---------- Hero Base ---------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ---------- Hero Background ---------- */
.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero__background img,
.hero__background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
}

/* ---------- Hero Content - Minimal ---------- */
.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-xl);
    max-width: 800px;
}

.hero__subtitle {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: var(--text-hero);
    font-weight: 300;
    color: var(--color-white);
    line-height: 1.1;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xl);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.hero__description {
    font-size: var(--text-lg);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.hero__cta {
    display: inline-flex;
    gap: var(--space-md);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

/* ---------- Hero Scroll Indicator ---------- */
.hero__scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-white);
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 1.2s;
}

.hero__scroll-text {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.8;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
    }

    .hero__content {
        padding: var(--space-lg);
    }

    .hero__cta {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero__cta .btn {
        width: 100%;
    }
}