/* ======= Effet de vague inversée ======= */
.footer-wave {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-bottom: -1px;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ======= Footer Principal ======= */
footer {
    background-color: #111111;
    color: white;
    font-family: Arial, sans-serif;
    padding: 30px 0 5px 0;
    width: 100%;
    position: relative;
    bottom: 0;
    display: flex;
}

/* ======= Contenu du Footer (Prend toute la largeur avec 50px de marge) ======= */
.footer-content {
    width: calc(100% - 100px); /* 50px de chaque côté */
    padding: 0 75px;
}

/* ======= Première section : Informations principales ======= */
.footer-first {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px; /* Espacement entre colonnes */
}

/* ======= Harmonisation des colonnes ======= */
.footer-column,
.footer-center,
.footer-menu {
    text-align: left;
}

/* Menu centré */
.footer-menu {
    list-style: none;
    padding: 0;
}

/* Espacement des éléments */
.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #efc500;
}

/* Bloc Coordonnées */
.footer-column .name {
    font-size: 18px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    border-bottom: 2px solid #efc500;
    padding-bottom: 5px;
}

/* Bloc Logo et Texte */
.footer-center {
    text-align: center;
}

.footer-center a{
    text-decoration: none;
    color: white;
}

.footer-center img {
    width: 150px;
    height: auto;
    margin-bottom: 10px;
}

.footer-center .question {
    font-size: 16px;
    font-style: italic;
}


/* Contact sous le texte */
.footer-contact{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.footer-contact a {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-contact a img {
    margin-right: 6px;
    width: 15px;
    height: 15px;
    display: inline-block;
    position: relative;
    top: 4px; /* ajuste verticalement si besoin */
}

/* Réseaux Sociaux */
.footer-social {
    text-align: center;
    margin-top: 15px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #efc500;
}

.jaune{
    color: #efc500 !important;
}

/* ======= Section du Copyright ======= */
.footer-bottom {
    margin-top:20px;
    padding: 15px 0;
    text-align: left;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #efc500;
}
.services{
    display:flex;
    justify-content: center;
}
.footer-social{
    display:none;
}
/* ======= RESPONSIVE DESIGN ======= */
@media (max-width: 1024px) {
    .footer-first {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .footer-column,
    .footer-center,
    .footer-menu {
        flex: 1 1 100%;
        text-align: center;
    }

    .footer-content {
        padding: 0 20px;
    }

    .footer-menu a {
        font-size: 16px; /* Agrandit le texte */
    }

    .footer-contact a {
        font-size: 17px;
    }

    .footer-contact a i {
        font-size: 22px;
    }
    .footer-center img {
        width: 215px;
        height: auto;
        margin-bottom: 10px;
    }
}

/* ======= Mode Mobile (Optimisation complète) ======= */
@media (max-width: 768px) {
    .footer-first {
        flex-direction: column;
        text-align: center;
    }

    .footer-menu {
        text-align: center;
    }

    .footer-menu li {
        display: block;
    }

    .footer-content {
        padding: 0 15px;
    }

    .footer-menu a,
    .footer-social a {
        font-size: 18px; /* Texte encore plus grand */
    }

    .footer-contact a{
        font-size: 12px;
    }

    .footer-contact a i {
        font-size: 15px;
    }

    .footer-bottom {
        text-align: center;
    }

    .services{
        font-size: 12px;
    }
}