.site-footer {
    font-weight: 800; /* Gras renforcé */
    background: rgba(100, 100, 100, 0.3); /* Gris transparent */
    backdrop-filter: blur(5px); /* Effet de flou */
    color: #333;
    text-align: center;
    font-size: 0.75em;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3px 0;
    position: fixed;
    bottom: 0;
    left: 0; /* Assure que le footer colle bien à gauche */
    width: 100%;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%; /* Empêche tout décalage inattendu */
    color: black;
}

.footer-nav a {
    text-decoration: none;
    color: black;
    font-weight: 800; /* Gras renforcé */
    transition: color 0.3s ease-in-out;
    font-size: 0.75em;
    margin: 0 8px;
}

.footer-nav a:hover {
    color: #6BBBAE;
}

/* Version mobile */
@media screen and (max-width: 510px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 2px;
    }

    .footer-nav {
        flex-direction: row; /* Les boutons restent sur une seule ligne */
        flex-wrap: wrap; /* Permet d'éviter une hauteur trop grande */
        justify-content: center;
        gap: 5px;
    }

    .site-footer {
        height: auto; /* Permet d'adapter la hauteur dynamiquement */
        padding: 5px 0;
    }

    .footer-nav a {
        font-size: 0.7em;
        margin: 0 5px;
    }
}

