/* Styles pour le footer */
footer {
    background-color: #343a40; /* Fond noir */
    color: #ffffff; /* Texte blanc */
    padding: 20px; /* Espacement interne */
    margin-top: 20px; /* Espace entre le contenu principal et le footer */
    border-radius: 0; /* Supprimer les coins arrondis pour un look plein écran */
    box-shadow: none; /* Supprimer l'ombre pour un effet uniforme */
    width: 100%; /* Occuper toute la largeur de l'écran */
}

footer p {
    margin: 5px 0; /* Réduire l'espacement entre les paragraphes */
    font-size: 14px; /* Taille de police réduite pour une meilleure lisibilité */
}

footer a {
    color: #17a2b8; /* Bleu clair pour les liens */
    text-decoration: none; /* Supprimer le soulignement */
}

footer a:hover {
    text-decoration: underline; /* Ajouter un soulignement au survol */
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff !important;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-icon:hover {
    background: #17a2b8;
    transform: translateY(-3px);
    border-color: #ffffff;
    text-decoration: none !important;
}

/* Couleurs spécifiques au survol (optionnel) */
.social-icon .fa-facebook-f:hover { color: #1877F2; }
.social-icon .fa-instagram:hover { color: #E4405F; }
.social-icon .fa-linkedin-in:hover { color: #0077B5; }

/* Styles pour les petits écrans */
@media (max-width: 768px) {
    footer {
        padding: 10px; /* Réduire l'espacement interne */
    }
    footer p {
        font-size: 12px; /* Réduire la taille du texte */
    }
}

/* Bouton WhatsApp Flottant */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    padding: 10px 20px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float i {
    font-size: 24px;
    margin-right: 8px;
}

.whatsapp-float span {
    font-weight: bold;
    font-size: 14px;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.05);
    color: #fff;
}

/* Sur mobile, on peut choisir de ne garder que l'icône pour gagner de la place */
@media (max-width: 768px) {
    .whatsapp-float span {
        display: none; /* Cache le texte sur petit écran */
    }
    .whatsapp-float {
        padding: 12px;
        border-radius: 50%;
        bottom: 15px;
        right: 15px;
    }
    .whatsapp-float i {
        margin-right: 0;
        font-size: 30px;
    }
}

.footer-site {
    background-color: #1a252f; /* Couleur plus profonde */
    color: #ffffff;
    padding: 30px 0 15px 0; /* Padding vertical réduit */
    font-size: 0.9rem;
}

.footer-site .fad-home-icon {
    font-size: 1.5rem;
    color: #27ae60;
}

.footer-site h3, .footer-site h6 {
    letter-spacing: 1px;
}

.footer-site .social-icon {
    color: white;
    background: rgba(255,255,255,0.1);
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    font-size: 14px;
}

.footer-site .social-icon:hover {
    background: #27ae60;
    transform: translateY(-3px);
}

.footer-site p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
}

/* Optimisation mobile */
@media (max-width: 768px) {
    .footer-site { text-align: center; }
    .map-container { margin-top: 15px; }
}

