/* ==========================================================================
   Page Hero Section
   Inner page header with background image + overlay.
   Centered title and description. Used on About, Services, Contact, etc.
   ========================================================================== */

.page-hero {
    background-color: var(--color-dark-blue);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    padding-top: 80px;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

@media ( min-width: 768px ) {
    .page-hero {
        min-height: 420px;
    }
}

/* Dark overlay when background image is present */
.page-hero[style*="background-image"]::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(1, 31, 83, 0.7);
}

/* Keep content above the overlay */
.page-hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-block: var(--space-lg);
}

.page-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.page-hero__heading {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--color-white);
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.page-hero__description {
    font-size: var(--font-size-body);
    color: var(--color-white);
    line-height: 1.75;
    margin: 0;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}
