/* Style de base pour le pied de page */
.footer-basic {
  padding: 40px 0;
  background-color: #ffffff;
  color: darkblue;
}
.list-inline {
  color: black;
}

/* Style pour les listes dans le pied de page */
.footer-basic ul {
  padding: 0;
  list-style: none;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Style pour les éléments de liste */
.footer-basic li {
  padding: 0 10px;
}

/* Style pour les liens dans les listes */
.footer-basic ul a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
}

/* Effet au survol des liens */
.footer-basic ul a:hover {
  opacity: 1;
}

/* Style pour les icônes de réseaux sociaux */
.footer-basic .social {
  text-align: center;
  padding-bottom: 25px;
}

/* Style pour les liens des icônes de réseaux sociaux */
.footer-basic .social > a {
  font-size: 24px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #ccc;
  margin: 0 8px;
  color: inherit;
  opacity: 0.75;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Effet au survol des icônes de réseaux sociaux */
.footer-basic .social > a:hover {
  opacity: 0.9;
  transform: translateY(-5px) scale(1.1);
}

/* Style pour le texte de copyright */
.footer-basic .copyright {
  margin-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
  margin-bottom: 0;
}