/* Footer général */
footer {
    background-color: #A8B6A4;
    color: #124559;
    padding: 3em 1em 1em 1em;
    font-family: "Gentium Book Plus", serif;
}

#footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2em;
}

#footer .col-md {
    flex: 1 1 180px; /* s’adapte à la taille disponible */
    min-width: 150px;
}

/* Titres de colonnes */
.titres-footer {
    font-family: "CreaLibre Gothic Regular", sans-serif;
    font-size: 1.3em;
    margin-bottom: 0.8em;
}

/* Listes dans le footer */
.li-footer {
    list-style: none;
    padding-left: 0;
    line-height: 2em;
}

.li-footer li a {
    text-decoration: none !important;
    color: #124559;
    transition: color 0.3s;
}

.li-footer li a:hover {
    color: #fff0eb;
}

/* Réseaux sociaux */
.reseaux-list {
    display: flex;
    gap: 0.5rem;
    padding-left: 0;
}

.reseaux-list li {
    list-style: none;
}

/* Logo footer */
#logo-footer {
    text-align: center;
    margin-top: 1em;
}

/* Texte copyright */
footer p.text-center {
    text-align: center;
    margin-top: 2em;
    font-size: 0.9em;
}