/* STYLES SPÉCIFIQUES AU HERO */
.op-hero-container {
    width: 100%;
    height: 50vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    padding: 0 20px;
    overflow: hidden;
}

.op-hero-container video.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.op-hero-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.op-hero-container .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
}

.op-hero-container .hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.1 !important;
    color: var(--section-titre-color);
    margin: 0;
}

@media (max-width: 768px) {
    .op-hero-container .hero-content h1 {
        font-size: 2rem;
    }
}