/* ============================================================
   BFL — PAGE BANNER + BREADCRUMB
   Utilisé sur toutes les pages dédiées (Contact, About,
   Fuels, Benefits & Features, etc.)
   Charte: #1C1C1C | #E8500A | #2BAF80 | Plus Jakarta Sans
   ============================================================ */


/* ── BANNER WRAPPER ─────────────────────────────────────────── */

.bfl-page-banner {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--steel);
    margin-top: 72px;
    /* hauteur du header fixe */
}


/* ── BACKGROUND IMAGE ───────────────────────────────────────── */

.bfl-page-banner__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    filter: brightness(0.65) saturate(0.6);
    z-index: 0;
}

.bfl-page-banner__bg--placeholder {
    background: linear-gradient(135deg, #1c1c1c 0%, #2a2a2a 60%, #1a1a1a 100%);
}


/* ── OVERLAY (dégradé sombre centré) ───────────────────────── */

.bfl-page-banner__overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.38);
    z-index: 1;
}


/* ── CONTENT (centré) ───────────────────────────────────────── */

.bfl-page-banner__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 56px 7% 52px;
    width: 100%;
}


/* ── TITLE ──────────────────────────────────────────────────── */

.bfl-page-banner__title {
    font-family: var(--font-title);
    font-size: 35px;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.05;
    margin: 0 0 18px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}


/* ── BREADCRUMB ─────────────────────────────────────────────── */

.bfl-page-banner__breadcrumb {
    display: flex;
    justify-content: center;
}

.bfl-page-banner__bc-list {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 0;
}

.bfl-page-banner__bc-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
}


/* Lien parent */

.bfl-page-banner__bc-link {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.18s;
}

.bfl-page-banner__bc-link:hover {
    color: var(--white);
}


/* Séparateur "/" */

.bfl-page-banner__bc-sep {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 8px;
    font-size: 0.75rem;
}


/* Item courant (page active) */

.bfl-page-banner__bc-item--current span {
    color: var(--white);
    font-weight: 700;
}


/* ── RESPONSIVE ─────────────────────────────────────────────── */

@media (max-width: 768px) {
    .bfl-page-banner {
        min-height: 200px;
    }
    .bfl-page-banner__content {
        padding: 44px 5% 40px;
    }
    .bfl-page-banner__title {
        font-size: clamp(1.8rem, 8vw, 2.6rem);
        letter-spacing: 2px;
    }
    .bfl-page-banner__bc-item {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .bfl-page-banner {
        margin-top: 62px;
    }
}