/* Fond carte routière réaliste */
#mapBackground {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;

    background-image: url("../images/fond_carte.png");
    background-size: cover;
    background-position: center;

    /* Réglage de l’estompe */
    opacity: 0.7; /* 0.1 = très léger, 0.4 = visible, 1 = brut */
    filter: grayscale(1) contrast(1.1) brightness(0.8);

    pointer-events: none;
}
