.footer {
    background: brown; /* gris */
    color: white;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
}

.footer-copyright {
    text-align: center;
    font-size: 0.75rem;
    color: #aaa;
    margin-top: 6px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 30px;
}

/* --- Menu --- */
.footer-menu ul {
    list-style: none;
    padding: 0;
}
.footer-menu li {
    margin-bottom: 10px;
}
.footer-menu a {
    color: white;
    text-decoration: none;
}

/* --- Logo --- */
.footer-logo img {
    max-width: 220px; /* adapte la taille selon ton design */
    height: auto;
    display: block;
    margin-top: 0px; /* centre l'image */
    margin-bottom: 0px;
}


/* --- Adresse --- */
.footer-address {
    text-align: right;
}
.footer-address p {
    margin: 4px 0;
}

/* --- Réseaux sociaux --- */
.footer-socials {
    text-align: center;
}
.footer-socials a {
    display: inline-block;
    margin: 0 10px;
}
.footer-socials img {
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
 
/* --- Version Mobile --- */
@media (max-width: 1023px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-menu {
        margin-bottom: 20px;
    }

    .footer-address {
        text-align: center;
        margin-top: 15px;
    }

    .footer-logo {
        margin-bottom: 20px;
    }
}


