/* ========================================
   Hero Component
   ======================================== */

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

.hero--compact {
    min-height: 50vh;
}

.hero--medium {
    min-height: 70vh;
}

/* Video / Image background */
.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

/* Dark overlay */
.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(26, 26, 46, 0.7) 100%);
    z-index: 1;
}

/* Gradient-only background (no image/video) */
.hero--gradient {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-lighter) 50%, #2D2D5E 100%);
}

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

.hero__logo {
    width: 160px;
    height: auto;
    margin: 0 auto var(--space-xl);
}

.hero__title {
    font-size: var(--font-size-4xl);
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    letter-spacing: -1px;
}

.hero__subtitle {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Gold accent line under title */
.hero__accent {
    width: 60px;
    height: 4px;
    background: var(--color-gold-gradient);
    border-radius: 2px;
    margin: 0 auto var(--space-lg);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .hero__title {
        font-size: var(--font-size-3xl);
    }

    .hero__logo {
        width: 140px;
    }
}

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

    .hero--compact {
        min-height: 40vh;
    }

    .hero--medium {
        min-height: 50vh;
    }

    .hero__title {
        font-size: var(--font-size-2xl);
    }

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

    .hero__logo {
        width: 100px;
    }

    .hero__content {
        padding: var(--space-xl) var(--space-md);
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Responsive - Small phones */
@media (max-width: 480px) {
    .hero {
        min-height: 60vh;
    }

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

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

    .hero__logo {
        width: 80px;
    }
}
