.hero{
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    padding-top: 5rem;   /* marge si tu as une navbar fixe */
    padding-bottom: 4rem;
}

/* Contenu au-dessus de l’image */
.hero .content{
    position: relative;
    z-index: 2;
}

/* ===== FOND IMAGE ===== */
.hero .bg-media{
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero .bg-media picture,
.hero .bg-media img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* ===== OVERLAY DÉGRADÉ CHAUD ===== */
.hero .overlay-gradient{
    position: absolute;
    inset: 0;
    z-index: 1;
    /* dégradé chaud bleu -> orange + léger assombrissement */
    background:
        linear-gradient(135deg,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.45) 25%,
            rgba(13, 110, 253, 0.55) 55%,
            rgba(255, 152, 0, 0.65) 100%
        );
    mix-blend-mode: multiply;
}

/* ===== BADGES DE RÉASSURANCE ===== */
.hero .badges span{
    background: rgba(0, 0, 0, 0.35);
    border-radius: 999px;
    padding: .35rem .9rem;
}

/* ===== BOUTONS HERO ===== */
.hero .btn-primary{
    box-shadow: 0 .5rem 1.5rem rgba(0,0,0,0.35);
}

.hero .btn-outline-light{
    border-width: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px){
    .hero{
        text-align: left;
        padding-top: 4rem;
        padding-bottom: 3rem;
    }
}

@media (max-width: 767.98px){
    .hero{
        text-align: center;
        padding-top: 4.5rem;
        padding-bottom: 3.5rem;
    }
    .hero .d-flex.flex-wrap{
        justify-content: center;
    }
    .hero .badges{
        justify-content: center;
    }
}
