/* Style du footer */
.footer {
    background-color: #59764F; /* Vert */
    color: #EADEC7; /* Blanc cassé */
    padding: 20px;
    font-size: 25px;
    text-align: center; /* Centrer le contenu */
}

.footer-content {
    display: flex;
    justify-content: center; /* Centrer horizontalement */
    flex-wrap: wrap; /* Permettre le retour à la ligne sur les petites résolutions */
    margin-bottom: 20px;
}

.footer-section {
    width: 32%; /* Trois sections, donc 32% de large chacune */
    margin-bottom: 20px;
    margin: 0 auto; /* Centrer horizontalement */
}

.footer h1 {
    font-size: 55px; /* Titre plus grand */
    margin-bottom: 15px;
}

.footer p {
    margin: 5px 0;
}

.footer-divider {
    border: none;
    border-top: 1px solid #C7D400; /* Orange */
    margin: 20px auto; /* Centrer horizontalement */
    width: 90%; /* Largeur à 90% */
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 10px; /* Espacement entre les sections */
}

.footer-section p {
    margin: 5px 0;
}

.footer-bottom a {
    color: #EADEC7; /* Orange */
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-separator {
    content: "|";
    margin: 0 10px;
}

/* Médias Queries */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column; /* Empiler les sections verticalement */
        align-items: center;
    }

    .footer-divider {
        width: 100%; /* Barre de séparation à la largeur maximale */
    }

    .footer-section {
        width: 100%; /* Pleine largeur pour les sections empilées */
    }

    .footer-bottom {
        flex-direction: column; /* Empiler les sections du bas verticalement */
    }
}
