/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--color-primary);
}

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

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: var(--space-2xl) var(--container-padding);
}

.hero__title {
    font-size: var(--fs-4xl);
    font-weight: var(--fw-extrabold);
    color: var(--color-bg-white);
    margin-bottom: var(--space-lg);
    line-height: var(--lh-tight);
}

.hero__subtitle {
    font-size: var(--fs-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-2xl);
    line-height: var(--lh-relaxed);
}

.hero .btn-group {
    justify-content: center;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }
}
