.navbar-nav > li > a,
.navbar-default .navbar-nav > li > a {
  color: skyblue !important; /* Remplacez "black" par la couleur de votre choix */
}

.navbar-nav > li > a:hover,
.navbar-nav > li.active > a {
  color: blanchedalmond !important;
}
.mod-banner__img {
  height: 300px; /* Ajustez la hauteur selon vos besoins */
  background-size: cover;
}
/* Fond sombre plein écran */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Boîte centrale */
.popup-box {
  background: #ffffff;
  padding: 24px 24px 20px;
  max-width: 420px;
  width: 90%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  position: relative;
  text-align: center;
}

/* Croix de fermeture */
.popup-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

/* Boutons */
.popup-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.popup-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.popup-btn.primary {
  background: #0073aa;
  color: #ffffff;
}

.popup-btn.secondary {
  background: #f2f2f2;
  color: #333333;
}

/* Responsive */
@media (max-width: 480px) {
  .popup-box {
    padding: 20px 16px;
  }
}
