
.hero-video::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.55); /* sombre mais pas noir pur */
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}


.hero-video {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: -45px;
}

.hero-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-overlay p {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.btn-primary {
    background: var(--brand-color);
    color: white;
    padding: 14px 40px;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #85772d;
}