/* =========================================
   SECTION HERO / PAGE BANNER
   ========================================= */

.page-banner {
    position: relative;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 100px 30px;
    text-align: center;
    min-height: 500px;
    align-content: center;

    .page-banner__overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg,
                rgba(6, 44, 74, 0.85) 0%,
                rgba(6, 44, 74, 0.75) 50%,
                rgba(179, 139, 50, 0.70) 100%);
    }

    .page-banner__inner {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .page-banner__title {
        margin-bottom: 0;
    }

    .page-banner__subtitle {
        font-size: clamp(1.125rem, 2.5vw, 1.75rem);
        font-weight: 300;
        letter-spacing: 4px;
        color: #fff;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        margin-bottom: 0;
    }

    .page-banner__breadcrumb {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.65);
        letter-spacing: 1px;

        a {
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
            transition: color 0.2s ease;
            cursor: pointer;

            &:hover {
                color: #b38b32;
            }
        }

        span[aria-hidden] {
            color: rgba(255, 255, 255, 0.3);
        }
    }

    .btn-hero {
        background: #b38b32;
        color: #fff;
        padding: 18px 50px;
        border: 2px solid #b38b32;
        font-size: 16px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        display: inline-block;
        text-decoration: none;
        margin-top: 8px;
        transition: all 0.3s ease;

        &:hover {
            background: #fff;
            color: #062c4a;
            border-color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
        }

        &:focus {
            outline: 3px solid #fff;
            outline-offset: 4px;
        }
    }

    @media (max-width: 767px) {
        padding: 70px 20px;
        min-height: 200px;
    }
}

/* --- Hero modifier (homepage full-height) --- */
.page-banner--hero {
    min-height: 600px;
    padding: 150px 0;

    @media (max-width: 767px) {
        min-height: 500px;
        padding: 100px 0;
    }
}