/* Titre Section Styles */
.titre-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.titre-background {
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.titre-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(36, 31, 12, 0.45);
    /* RGB(36, 31, 12) with 45% opacity */
    z-index: 1;
}

.titre-content {
    text-align: center;
    width: 100%;
}

.titre-title {
    color: #004923;
    font-size: 73px;
    font-weight: bold;
    margin: 50px 0 30px 0;
    /* text-shadow: 0px 6px 4px rgba(0, 0, 0, 0.2); */
    line-height: 1.1;
    font-family: 'Cormorant Infant';
    /* text-transform: uppercase; */
    font-style: italic;
    letter-spacing: -0.7px;
}

[data-section="titre"] img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: top center;
}

.titre-background:after {
    /* content: ""; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(36, 31, 12, 0.45);
}

/* Responsive Design */
@media (max-width: 768px) {
    .titre-section {
        /* height: 250px; */
    }

    .titre-title {
        font-size: 50px;
        padding: 0 15px;
        margin-top: 30px;
        margin-bottom: 0;
        line-height: 1.1;
    }

    [data-section="titre"] img {
        height: 120px;
    }
}