/**
 * cranio-norman — Hero Section Styles
 * v1.0.0 | 2026-03-22
 * Full-width hero with background image, overlay, heading, CTA.
 *
 * ✏️ CONTENT — overlay opacity, heights, font sizes safe to change.
 */

/* ── Hero wrapper ──────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* ── Dark overlay ──────────────────────────────────────── */
/* ✏️ CONTENT: overlay opacity safe to adjust */
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 1;
}

/* ── Content area ──────────────────────────────────────── */
.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: var(--spacing-xl) var(--spacing-md);
    max-width: 750px;
}

/* ── Subtitle (location line) ──────────────────────────── */
/* ✏️ CONTENT: font size and spacing safe to change */
.hero__subtitle {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-xs);
    opacity: 0.9;
}

/* ── Main heading ──────────────────────────────────────── */
.hero__title {
    font-size: 3rem;                       /* ✏️ CONTENT — matches Avada H1 scale */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--color-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ── Body text ─────────────────────────────────────────── */
.hero__body {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ── CTA button ────────────────────────────────────────── */
.hero__cta {
    font-size: 1rem;
    padding: 0.85rem 2.5rem;
}

/* ── Responsive adjustments ────────────────────────────── */
@media (max-width: 767px) {
    .hero {
        min-height: 60vh;
    }

    .hero__title {
        font-size: 1.75rem;
    }

    .hero__subtitle {
        font-size: 0.8rem;
    }

    .hero__body {
        font-size: 0.95rem;
    }

    .hero__cta {
        font-size: 0.9rem;
        padding: 0.75rem 2rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hero__title {
        font-size: 2.25rem;
    }
}

/* ✅ SAFE TO RUN — verified: no secrets, no dangerous permissions, no destructive operations */
