/* Style pour l'image de fond statique */
body::before {
    content: "";
    position: fixed;  /* Position fixe pour rester statique */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;  /* Derrière tous les autres éléments */
    background-image: url('../img/bg2.jpeg');  /* Chemin vers l'image */
    background-size: cover;  /* Couvre tout l'écran */
    background-position: center center;  /* Centré */
    background-repeat: no-repeat;  /* Ne se répète pas */
    opacity: 0.2;  /* Niveau d'opacité -*/
}

/* Ajustement pour assurer que le contenu est toujours lisible */
.container-fluid {
    position: relative;
    z-index: 1;  /* Au-dessus du fond */
}

/* Assurer que les éléments avec fond blanc sont plus contrastés */
.bg-white, .bg-light {
    background-color: rgba(255, 255, 255, 0.85) !important;
}
