/* /pages/about/css/hero.css
   About page hero + CTA band
   -------------------------------------------- */

/* ============================
   ABOUT HERO (mini home-hero)
   ============================ */

.subpage-hero.about-hero {
    position: relative;
    height: auto;
    min-height: 260px;
    padding: 4rem 0 3rem;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    /* background-image is injected inline via hero.php */
    background-size: cover;
    background-position: center;

    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(0,0,0,0.25) 0%,
            rgba(0,0,0,0.92) 78%,
            rgba(0,0,0,0.98) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.92)
        );

    /* Divider line moved here so photo never shows through */
    box-shadow: inset 0 -1px 0 rgba(255,255,255,0.2);

    pointer-events: none;
    z-index: 0;
}

.about-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

/* Eyebrow */
.about-hero-eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 0.5rem;
}

/* Title */
.about-hero-title {
    font-family: 'Bavista Soulare', var(--header-font, serif);
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    text-shadow:
        0 2px 4px rgba(0,0,0,0.45),
        0 4px 12px rgba(0,0,0,0.5);
}

/* Subtitle */
.about-hero-subtitle {
    max-width: 640px;
    margin: 0 auto 1.25rem;
    font-size: 1.02rem;
    line-height: 1.7;
}

/* Meta chips */
.about-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
    margin: 0.75rem auto 0.75rem;
}

.about-hero-chip {
    cursor: default;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(200,167,99,0.5);
    background: rgba(0,0,0,0.5);
    color: #d8d8d8;
}

/* ============================
   CTA ROW
   ============================ */

.about-hero-cta-row {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.about-hero-btn {
    display: inline-block;
    padding: 0.55rem 1.6rem;
    font-size: 0.95rem;
    font-family: 'Algerian', var(--header-font, serif);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    line-height: 1;
    border-radius: 999px;
    text-align: center;
    white-space: nowrap;

    color: #000;
    background: linear-gradient(135deg, #c8a763, #7b6c55);
    box-shadow: 0 8px 22px rgba(0,0,0,0.65);

    transition:
        transform 0.15s ease-out,
        box-shadow 0.15s ease-out,
        background 0.2s ease-out,
        color 0.2s ease-out;
}

.about-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.75);
    background: linear-gradient(135deg, #7b6c55, #c8a763);
}

/* ============================
   RESPONSIVE – TABLET
   ============================ */

@media (max-width: 900px) {
    .subpage-hero.about-hero {
        padding: 3.2rem 0 2.5rem;
        min-height: 220px;
    }

    .about-hero-title {
        font-size: 2.2rem;
    }
}

/* ============================
   RESPONSIVE – SMALL MOBILE
   ============================ */

@media (max-width: 600px) {
    .about-hero-title {
        font-size: 1.9rem;
    }

    .about-hero-subtitle {
        font-size: 0.96rem;
    }

    .about-hero-cta-row {
        gap: 0.5rem;
    }

    .about-hero-btn {
        font-size: 0.78rem;
        padding: 0.45rem 1.2rem;
    }
}