/* ================================== */
/* STYLE DU BOUTON FLOTTANT WHATSAPP */
/* ================================== */

.whatsapp-float {
    position: fixed; /* Le bouton flotte au-dessus de tout */
    width: 60px;
    height: 60px;
    bottom: 25px; /* Distance du bas */
    right: 25px;  /* Distance de la droite */
    
    background-color: #25D366; /* Couleur verte de WhatsApp */
    color: #FFF; /* Couleur de l'icône (blanche) */
    
    border-radius: 50%; /* Le rend parfaitement rond */
    text-align: center;
    font-size: 30px; /* Taille de l'icône */
    
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25); /* Ombre pour le relief */
    z-index: 1000; /* S'assure qu'il est au-dessus de tout */
    
    /* Centrage de l'icône à l'intérieur du cercle */
    display: flex;
    justify-content: center;
    align-items: center;
    
    transition: background-color 0.3s;
}

/* Effet au survol */
.whatsapp-float:hover {
    background-color: #128C7E; /* Vert plus foncé au survol */
}