.contact-area {
  width: 100%;
  height: 100%;
  background-image: url(../images/logo/logo_contact.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain; /* Ajuste l'image pour qu'elle soit entièrement visible */
  background-opacity: 1;
}

/* Image pour le mode sombre */
.dark-mode .contact-area {
  background-image: url(../images/logo/logo.png); 
}
/* Les icones seront masqués */
/* .footer a .text-logo {
  display: inline; 
} */

/* En mode mobile, masquer les icones */
/* Les icones seront masqués */
/* @media (max-width: 768px) {
  .footer a .text-logo {
    display: none; 
  }
} */

.social-icon-facebook,
.social-icon-tiktok,
.social-icon-instagram,
.social-icon-linkedin,
.social-icon-whatsapp {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  color: #333;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.social-icon-whatsapp:hover {
  background-color: #25D366; 
  color: #ffffff;
}

.social-icon-facebook:hover {
  background-color: #3b5998; 
  color: #ffffff;
}

.social-icon-tiktok:hover {
  background-color: #181818; 
  color: #ffffff;
}

.social-icon-instagram:hover {
  background-color: #e4405f; 
  color: #ffffff;
}

.social-icon-linkedin:hover {
  background-color: #0077B5; 
  color: #ffffff;
}

/* debut footer section */
footer {
  margin-top: auto; /* Assure-toi que le footer soit positionné en bas */
  background-color: #343a40;
  color: white;
}

footer h5 {
  font-weight: bold;
  margin-bottom: 15px;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
  color: #17a2b8;
}


