/* =========================
   FOOTER – BASE
========================= */

.footer-basic {
  padding: 40px 0;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
}

/* =========================
   LISTE LIENS
========================= */

.list-inline {
  color: black;
}

.footer-basic ul {
  padding: 0;
  list-style: none;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-basic li {
  padding: 0 10px;
}

/* =========================
   LIENS TEXTE – EFFET WHAOU
========================= */

.footer-basic ul a {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
  opacity: 0.85;
  padding-bottom: 4px;
  transition: 
    color 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

/* soulignement animé */
.footer-basic ul a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #0e1358; /* ORANGE THÈME */
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

/* hover */
.footer-basic ul a:hover {
  color: #0e1358;
  opacity: 1;
  transform: translateY(-1px);
}

.footer-basic ul a:hover::after {
  width: 100%;
}

/* =========================
   RÉSEAUX SOCIAUX
========================= */

.footer-basic .social {
  text-align: center;
  padding-bottom: 25px;
}

.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,
    box-shadow 0.3s ease;
}

/* hover icônes */
.footer-basic .social > a:hover {
  opacity: 1;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 20px rgb(11, 20, 116);
}

/* =========================
   COPYRIGHT
========================= */

.footer-basic .copyright {
  margin-top: 18px;
  text-align: center;
  font-size: 13px;
  color: #999;
  margin-bottom: 0;
  letter-spacing: 0.5px;
}

/* =========================
   MAP
========================= */

.map-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 50vh;
  border: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1050px) {
  .map-container iframe {
    height: 40vh;
  }
}

@media (max-width: 768px) {
  .footer-basic ul {
    font-size: 16px;
  }

  .footer-basic li {
    padding: 6px 0;
  }
}
