/********************************/
/* Header Title - Image mise en avant */
/********************************/

/* Style de base pour le header title avec image */
.bwp-main .page-title.bwp-title {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Overlay sombre pour améliorer la lisibilité du texte */
.bwp-main .page-title.bwp-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Container du contenu au-dessus de l'overlay */
.bwp-main .page-title.bwp-title .container {
    position: relative;
    z-index: 2;
}

/* Titre en blanc */
.bwp-main .page-title.bwp-title h1 {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Breadcrumb en blanc */
.bwp-main .page-title.bwp-title .breadcrumb,
.bwp-main .page-title.bwp-title .breadcrumb a,
.bwp-main .page-title.bwp-title .bwp-breadcrumb,
.bwp-main .page-title.bwp-title .bwp-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
}

.bwp-main .page-title.bwp-title .breadcrumb a:hover,
.bwp-main .page-title.bwp-title .bwp-breadcrumb a:hover {
    color: #fff;
}

/* Responsive - Tablette */
@media (max-width: 991px) {
    .bwp-main .page-title.bwp-title {
        min-height: 280px;
    }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    .bwp-main .page-title.bwp-title {
        min-height: 220px;
    }

    .bwp-main .page-title.bwp-title h1 {
        font-size: 28px;
        line-height: 34px;
    }
}
