/*** 
=============================================
    Breadcrumb area style
=============================================
***/
.breadcrumb-area {
    position: relative;
    display: block;
    padding: 50px;
    padding-top: 0;
    z-index: 1; /* Adjusted z-index */
    overflow: hidden; /* Added to contain the background image */
}

.breadcrumb-area-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Adjusted positioning and size */
    background-image: url('your-image.jpg'); /* Specify your background image URL */
    background-attachment: fixed; /* Fixed to make the image stay in place */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    background-blend-mode: luminosity;
    z-index: -1;
}

.breadcrumb-area-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Adjusted positioning and size */
    background-color: #000000;
    opacity: 0.15;
}

.breadcrumb-area .inner-content {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space between;
    align-items: center;
    flex-wrap: wrap;
    padding: 360px 0 0px;
    z-index: 10;
}

.breadcrumb-area .title {
    position: absolute;
    left: 0;
    bottom: -50px;
    background: #ffffff;
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.12);
    padding: 22px 30px 22px;
}

.breadcrumb-area .title:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-image: -moz-linear-gradient(0deg, rgb(255, 128, 0) 0%, rgb(255, 128, 0) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(255, 128, 0) 0%, rgb(255, 128, 0) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(255, 128, 0) 0%, rgb(255, 128, 0) 100%);
}

.breadcrumb-area .title h2 {
    font-size: 40px;
    line-height: 1.2em;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: -0.02em;
}

/* Règle spécifique pour les appareils mobiles */
@media (max-width: 768px) {
    .breadcrumb-area-bg {
        background-size: cover; /* Set the background image to cover the section in the mobile version */
    }

    .breadcrumb-area .title {
        bottom: -25px; /* Adjusted position for small screens */
    }

    .breadcrumb-area .inner-content {
        padding: 360px 0 0px; /* Adjusted inner padding for small screens */
    }
}
