/* /pages/shows/css/hero.css
   Shows page hero + CTA buttons
   -------------------------------------------- */

/* ============================
   SHOWS HERO + SUBHERO IMAGE (layered pattern)
   ============================ */

/* HERO WRAPPER (override global .subpage-hero height safely) */
.subpage-hero.shows-hero {
    height: auto;
    min-height: 300px;
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 2.6rem 0 2.4rem;
}

/* Image layer behind text */
.shows-subhero-image-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.shows-subhero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fade overlay for readability */
.subpage-hero.shows-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;

    background: radial-gradient(
        circle at top,
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.92)
    );
}

/* HERO INNER */
.subpage-hero.shows-hero .shows-hero-inner {
    position: relative;
    z-index: 3;

    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.75rem;
    text-align: center;
}

/* HERO TEXT */
.subpage-hero-title {
    text-shadow:
        0 3px 6px rgba(0,0,0,0.6),
        0 12px 22px rgba(0,0,0,0.85);
}

.shows-hero-tagline {
    font-family: sans-serif;
    color: #f4f4f4;
    opacity: 0.9;
    font-size: 1.05rem;
    margin: 0 0 1.7rem;
}

/* CTA ROW */
.shows-hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

/* ==========================================
   UNIFIED HERO BUTTON STYLES
   ========================================== */

.subpage-hero-btn {
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;

    font-family: 'Algerian', var(--header-font, serif);
    font-size: clamp(0.85rem, 0.4vw + 0.85rem, 1rem);

    padding:
        clamp(0.45rem, 0.4vw + 0.35rem, 0.7rem)
        clamp(1.3rem, 1.2vw + 1.1rem, 2rem);

    border-radius: 999px;
    text-align: center;
    line-height: 1.1;
    white-space: nowrap;

    transition:
        transform 0.15s ease-out,
        box-shadow 0.15s ease-out,
        background 0.2s ease-out,
        color 0.2s ease-out,
        border-color 0.2s ease-out;
}

.primary-hero-btn {
    color: #000;
    background: linear-gradient(135deg, #c8a763, #7b6c55);
    box-shadow: 0 6px 18px rgba(0,0,0,0.7);
}

.primary-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.85);
}

.secondary-hero-btn {
    color: #c8a763;
    border: 1px solid rgba(200,167,99,0.85);
    background: rgba(0,0,0,0.35);
}

.secondary-hero-btn:hover {
    background: rgba(200,167,99,0.18);
    color: #fff;
    transform: translateY(-2px);
}

.shows-hero-cta-row .subpage-hero-btn {
    margin-bottom: 0;
}

/* ==========================================
   RESPONSIVE – TABLET
   ========================================== */

@media (max-width: 768px) {
    .shows-hero-title {
        font-size: 2.1rem;
    }

    .shows-hero-tagline {
        font-size: 0.96rem;
    }

    .shows-hero-cta-row {
        flex-direction: column;
        align-items: center;
        gap: 0.9rem;
        margin-top: 0.75rem;
    }

    .shows-hero-cta-row .subpage-hero-btn {
        width: auto;
    }
}

/* ==========================================
   RESPONSIVE – SMALL MOBILE
   ========================================== */

@media (max-width: 600px) {
    .subpage-hero.shows-hero {
        min-height: 260px;
        padding: 2.1rem 0 2.2rem;
    }

    .shows-hero-title {
        font-size: 1.85rem;
        margin-bottom: 0.5rem;
        margin-top: 0;
    }

    .shows-hero-tagline {
        font-size: 0.9rem;
        max-width: 18rem;
        margin: 0 auto 1rem;
        line-height: 1.35;
    }

    .shows-hero-cta-row {
        gap: 0.85rem;
        margin-top: 0.35rem;
        margin-bottom: 0.7rem;
    }

    .shows-hero-cta-row .subpage-hero-btn {
        max-width: 250px;
        width: 100%;
        white-space: normal;
    }
}

/* ==========================================
   RESPONSIVE – DESKTOP SIZE TUNING
   ========================================== */

@media (min-width: 900px) {
    .subpage-hero.shows-hero {
        min-height: 360px;
    }
}