/* Structure globale */
.bande-logo {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 8px;
}

/* Colonne gauche = logo */
.col-gauche .logo img {
    max-height: 100px;
}

/* Colonne droite = réseaux + langue */
.col-droite {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

/* Réseaux sociaux */
.reseaux-sociaux {
    display: flex;
    gap: 10px;
}

.reseaux-sociaux a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    border-radius: 1px;
    transition: background 0.3s ease;
}

.reseaux-sociaux a:first-child {
    background-color: #09365d; /* Facebook gris */
}

.reseaux-sociaux a:nth-child(2) {
    background-color: #09365d; /* LinkedIn gris */
}

.reseaux-sociaux a:hover {
    filter: brightness(1.1);
}

/* Lien de langue */
.langue {
    color: #fff;
    text-decoration: underline;
}
@media screen and (max-width: 1024px) {
    .reseaux-sociaux {
        display: none;
    }
}
/* Icônes réseaux sociaux dans le menu mobile */
.reseaux-sociaux.mobile {
    display: none; /* caché par défaut (desktop) */
}

@media screen and (max-width: 1024px) {
    .reseaux-sociaux.mobile {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin: 20px 0;
    }

    .reseaux-sociaux.mobile a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 50px;
        height: 50px;
        background-color: #a7afb5;
        color: #fff;
        text-decoration: none;
        border-radius: 4px;
        transition: background 0.3s ease;
        font-size: 24px;
    }

    .reseaux-sociaux.mobile a i {
        all: unset; /* Reset complet */
        font-family: "Font Awesome 5 Brands" !important;
        font-style: normal;
        font-weight: 400;
        font-size: 24px;
        display: block;
        text-align: center;
        line-height: 1;
        width: auto;
        height: auto;
        margin: 0;
        padding: 0;
    }

    .reseaux-sociaux.mobile a:hover {
        filter: brightness(1.1);
    }
}
