/* Style de base pour le pied de page */
.footer-basic {
  padding: 40px 0;
  background-color: #ffffff;
  color: var(--primary-color);
}

/* 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;
}

/* Effet au survol des icônes de réseaux sociaux */
.footer-basic .social > a:hover {
  opacity: 0.9;
}

/* Style pour le texte de copyright */
.footer-basic .copyright {
  margin-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
  margin-bottom: 0;
}

.map-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.map-container iframe {
  width: 100%;
  height: 50vh;
  border: 0;
}
@media (max-width: 1050px) {.map-container {height: auto;}.map-container iframe {height: auto;}}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: auto;
}
.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid var(--primary-color);
  width: 70%;
  max-width: 600px;
  position: relative;
}
.close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  cursor: pointer;
}

.close:hover {
  color: var(--primary-color);
}

#modalOKButton {
  border: none;
  padding: 10px 20px;
  margin-top: 10px;
  cursor: pointer;
}
.ok-button:hover {
  background-color: var(--primary-color);
  color: white;
}







