/**
 * Shared Hero Styles
 * Used by both the homepage hero and the hero page block
 */

.hero-background {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 120px 2rem 4rem;
    box-sizing: border-box;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at center, var(--overlay-bodycolor1-light) 0%, var(--overlay-bodycolor1-heavy) 60%, rgba(0, 0, 0, 0.95) 100%),
        linear-gradient(180deg, var(--overlay-bodycolor1-medium) 0%, rgba(10, 10, 10, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 2rem;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-gold-logo-lightest);
    letter-spacing: 0.08em;
    margin: 0 0 1rem;
    line-height: 1.1;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 1), 0 0 30px var(--overlay-gold-heavy);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--textcolor2);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0 0 2rem;
    max-width: 600px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 1), 0 0 20px rgba(0, 0, 0, 0.8);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
    .hero-background {
        min-height: auto;
        padding: 100px 1.5rem 3rem;
        gap: 1.5rem;
    }

    .hero-content {
        padding: 1.5rem 1rem;
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) and (orientation: portrait) {
    .hero-background {
        background-position: top center;
        padding-top: 75px;
        gap: 0.5rem;
    }

    .hero-content {
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-background {
        padding: 90px 1rem 2rem;
        gap: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}
