/* Styles pour le footer */
footer {
    background-color: rgba(51, 51, 51, 0.8); /* Transparent */
    color: #fff;
    padding: 10px 0; /* Réduit l'espace */
    text-align: center;
    font-size: 12px; /* Petite taille */
    position: relative; /* S'assurer que le footer n'est pas fixe */
    /* Enlever les propriétés 'bottom', 'left', 'right' */
    z-index: 1000; /* Au-dessus des autres éléments */
    opacity: 0; /* Invisible au départ */
    transition: opacity 0.5s ease-in-out; /* Animation */
}

footer.visible {
    opacity: 1; /* Rendre visible */
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Moins d'espace horizontal */
}

.footer-info {
    margin-bottom: 5px; /* Moins d'espace entre les éléments */
}

.footer-info h3,
.footer-links h3 {
    color: #28a745;
    margin-bottom: 5px;
}

.footer-info p {
    margin: 0;
    color: #ddd;
}

.footer-copyright {
    margin-top: 5px;
    font-size: 10px;
}

.footer-info a {
    color: #fff; /* Change la couleur du lien en blanc */
    text-decoration: none; /* Enlève le soulignement */
}

.footer-info a:hover {
    text-decoration: underline; /* Ajoute un soulignement au survol */
    color: #28a745; /* Change la couleur au survol si tu le souhaites */
}

/* Section 'footer-legal' en ligne */
.footer-legal ul {
    list-style-type: none;
    padding: 0;
    display: flex; /* Utiliser flexbox pour l'affichage en ligne */
    justify-content: center; /* Centrer les éléments horizontalement */
    gap: 20px; /* Espacement entre les éléments */
}

.footer-legal li {
    margin-bottom: 0; /* Enlever l'espacement vertical */
}

.footer-legal a {
    text-decoration: none;
    font-size: 14px;
    color: #00ffff; /* Couleur des liens */
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #28a745; /* Changement de couleur au survol */
}

/* Assurez-vous que les liens se comportent bien sur mobile */
@media (max-width: 768px) {
    .footer-legal {
        margin-top: 15px;
    }

    .footer-legal h3 {
        font-size: 16px;
    }

    .footer-legal a {
        font-size: 13px;
    }
}
