
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Style du bouton WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 12px;
    border-radius: 40%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease-in-out;
    
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float i {
    font-size: 35px;
}

.fa-solid {
    color: #589256; /* Couleur violette pâle */
    margin-right: 8px;
}
.contact-info a {
    text-decoration: none; /* Supprime le soulignement */
    color: inherit; /* Garde la couleur du texte normale */

  }
  /*social media*/
.social-container {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #ddd;
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Couleurs au hover */
.social-icon.facebook:hover {
    background: #1877F2;
}

.social-icon.twitter:hover {
    background: #1DA1F2;
}

.social-icon.instagram:hover {
    background: #E1306C;
}

.social-icon.linkedin:hover {
    background: #0077B5;
}

.social-icon.whatsapp:hover {
    background: #25D366;
}