/* Style général pour le pied de page spécifique */
.custom-footer {
  width: 100%;
  box-sizing: border-box;
}

.custom-footer-top {
  background-color: #000; /* Couleur de fond noire */
  color: #ffde59; /* Couleur de texte orange */
  padding: 10px 0; /* Espacement vertical */
  text-align: right; /* Texte aligné à droite pour grands écrans */
}

.custom-footer-top-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 40px; /* Marges pour grands écrans */
}

.custom-footer-bottom {
  background-color: #ffde59; /* Couleur de fond jaune */
  color: #000; /* Couleur de texte noire */
  padding: 20px 0; /* Espacement vertical */
}

.custom-footer-bottom-content {
  display: flex;
  justify-content: space-between;
  padding: 0 40px; /* Marges pour grands écrans */
}

/* Section "À propos de nous" */
.custom-footer .custom-about-us {
  display: flex;
  align-items: center;
}

.custom-footer .custom-about-us .ms-3 {
  margin-left: 15px;
}

/* Section des réseaux sociaux */
.custom-footer .custom-social-media {
  text-align: right;
}

.custom-footer .custom-social-media .fw-bold {
  display: block;
  margin-bottom: 10px;
}

.custom-footer .custom-social-icons {
  display: flex;
  justify-content: flex-end;
}

.custom-footer .custom-social-icons a {
  margin-left: 10px;
}

.custom-footer .custom-text-lalec {
  color: #ffde59 !important; /* Couleur de texte orange */
}

.custom-footer .fw-bold {
  font-weight: bold;
}

/* Media Query pour les petits écrans */
@media (max-width: 768px) {
  .custom-footer-top-content {
    justify-content: center; /* Centrer le contenu en haut */
    padding-right: 0;
  }

  .custom-footer-bottom-content {
    flex-direction: column; /* Aligner en colonne */
    align-items: center; /* Centrer le contenu */
    text-align: center;
    padding: 0 20px; /* Réduire la marge pour les petits écrans */
  }

  .custom-footer .custom-about-us {
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
    text-align: center;
  }

  .custom-footer .custom-social-media {
    text-align: center; /* Centre le texte */
  }

  .custom-footer .custom-social-icons {
    justify-content: center; /* Centre les icônes */
  }

  .custom-footer .custom-social-icons a {
    margin: 0 5px; /* Réduit l'espace entre les icônes */
  }
}