/* ==========================================================================
   Hero Sections
   ========================================================================== */

.hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-black);
}

.hero-full {
    min-height: 70vh;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to right,
        rgba(26, 26, 26, 0.85) 0%,
        rgba(26, 26, 26, 0.6) 50%,
        rgba(26, 26, 26, 0.2) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: var(--space-16) 0 var(--space-12);
}

.hero-content h1 {
    color: var(--color-white);
    margin-bottom: var(--space-4);
    max-width: 600px;
}

.hero-content p {
    color: var(--color-gray-200);
    font-size: var(--text-lg);
    max-width: 520px;
    margin-bottom: var(--space-6);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(200, 168, 78, 0.15);
    border: 1px solid rgba(200, 168, 78, 0.4);
    color: var(--color-gold-light);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    margin-bottom: var(--space-6);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    fill: var(--color-gold);
}

/* Hero sub-page (smaller) */
.hero-sub {
    min-height: 35vh;
}

.hero-sub .hero-content {
    padding: var(--space-20) 0 var(--space-10);
}

@media (min-width: 1024px) {
    .hero {
        min-height: 60vh;
    }

    .hero-full {
        min-height: 75vh;
    }

    .hero-sub {
        min-height: 40vh;
    }

    .hero-content {
        padding: var(--space-20) 0 var(--space-16);
    }

    .hero-content p {
        font-size: var(--text-xl);
    }
}
