.footer {
    background-color: #E1C5A0;
    width: 100%;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    position: relative;
    left: 0;
}

/* Conteneur du footer */
.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}

/* Colonnes du footer */
.footer-column {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    padding: 15px;
}

.footer-logo {
    justify-content: flex-start;
}

.footer-logo img {
    height: 100px;
    width: 100px;
}

.social-network {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
}

.social-network a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #693d22;
}

.social-network img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.social-network img[src*="instagram-logo.png"] {
    height: 50px;
}

.footer-social {
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.footer-links {
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
}

.footer-links-mobile {
    display: none; /* Caché par défaut sur grand écran */
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Style pour les liens légaux */
.footer-links a,
.footer-links-mobile a {
    color: #693d22;
    text-decoration: none;
    font-size: 1em;
}

/* Section bas du footer */
.footer-bottom,
.footer-bottom-large {
    text-align: center;
    margin-top: 8px;
    color: #693d22;
    font-size: 0.95em;
    width: 100%;
}

.footer-bottom:last-child,
.footer-bottom-large:last-child {
    font-size: 0.85em;
}

/* Forcer le footer à coller aux bords sur la page d'accueil */
body.home .footer {
    margin: 0;
    width: 100vw;
    position: relative;
    left: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 10px 15px;
    }

    .footer-logo {
        justify-content: center;
        padding-top: 20px;
    }

    .footer-social {
        align-items: center;
    }

    .footer-links {
        display: none; /* Cacher les liens légaux du grand écran */
    }

    .footer-links-mobile {
        display: flex; /* Afficher les liens légaux, copyright et site réalisé */
    }

    .footer-bottom-large {
        display: none; /* Cacher copyright et site réalisé du grand écran */
    }

    .footer-logo img {
        height: 80px;
        width: 80px;
    }

    .social-network img {
        height: 35px;
        width: 35px;
    }

    .social-network img[src*="instagram-logo.png"] {
        height: 45px;
        width: 45px;
    }

    .footer-bottom {
        font-size: 0.9em;
    }

    .footer-bottom:last-child {
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    .footer-column {
        padding: 8px 10px;
    }

    .footer-logo img {
        height: 80px;
        width: 80px;
    }

    .social-network img {
        height: 30px;
        width: 30px;
    }

    .social-network img[src*="instagram-logo.png"] {
        height: 40px;
        width: 40px;
    }

    .footer-bottom {
        font-size: 0.9em;
    }

    .footer-bottom:last-child {
        font-size: 0.8em;
    }
}