.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 60px;
    color: white;
    background-color: #1e1c25;
}

/* Partie gauche */
.footer_left {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
}

.footer_logo {
    width: 120px;
}

/* Partie centrale */
.footer_center {
    width: 60%;
    text-align: left;
    padding-left: 20px;
}

.footer_email {
    font-size: 42px;
    font-weight: bold;
    margin: 0;
}

.footer_separator {
    width: 95%;
    border: 0;
    border-top: 2px solid white;
    margin: 5px 0;
}

.footer_contact {
    font-size: 38px;
    font-weight: bold;
    margin: 0;
}

/* Partie droite */
.footer_right {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding-left: 20px;
}

.footer_social_title {
    font-style: italic;
    font-size: 24px;
    margin-bottom: 10px;
    color: #716F79;
}

.footer_socials_wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer_socials {
    display: flex;
    column-gap: 15px;
}

.social_separator {
    width: 300%;
    border-top: 2px solid white;
    margin-top: 10px;
}

.social_icon img {
    width: 28px;
}

.footer_credits {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 10px;
}

/* Responsive : pour les écrans jusqu'à 1200px */
@media (max-width: 1200px) {
    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer_left,
    .footer_center,
    .footer_right {
        width: 100%;
        padding: 10px 0;
        text-align: center;
        align-items: center;
    }

    /* Supprimer le padding à gauche sur les blocs centraux et droits */
    .footer_center,
    .footer_right {
        padding-left: 0;
    }

    /* Réduction des tailles de polices pour mieux s'adapter */
    .footer_email {
        font-size: 32px;
    }

    .footer_contact {
        font-size: 28px;
    }

    .footer_social_title {
        font-size: 20px;
    }

    /* Pour la séparation sous les icônes, on ajuste la largeur */
    .social_separator {
        width: 100%;
        margin-top: 10px;
    }
}

/* Optionnel : ajustements pour les très petits écrans */
@media (max-width: 600px) {
    .footer {
        padding: 20px 30px;
    }

    .footer_email {
        font-size: 28px;
    }

    .footer_contact {
        font-size: 22px;
    }

    .footer_logo {
        width: 100px;
    }
}