.section-hero-titre-section {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.container-titre-section {
    position: relative;
    z-index: 3;
    color: var(--color-text-tertiary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.title-section {
    font-size: 3rem;
    font-weight: 500;
    font-family: var(--font-family-title);
    text-transform: uppercase;
    text-align: center;
    color: var(--color-text-tertiary);
}

.subtitle-section {
    font-size: 1.5rem;
    font-family: var(--font-family-primary);
    text-align: center;
    color: var(--color-text-tertiary);
    margin-top: 20px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .section-hero-titre-section {
        min-height: 50vh;
    }
}

@media screen and (max-width: 480px) {
    .section-hero-titre-section {
        min-height: 35vh;
    }
}
