/* RESET STYLES & HELPER CLASSES
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.hover-underline {
  font-size: 2rem;
  color: #ffffff;
  position: relative;
  display: inline-block;
}

.hover-underline::after,
.hover-underline::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #ff0000, #00ffff);
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-out;
}

.hover-underline::before {
  top: -5px;
  transform-origin: left;
}

.hover-underline:hover::after,
.hover-underline:hover::before {
  transform: scaleX(1);
}
.holographic-card img{

  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.5s ease;
}

.holographic-card img {
  color: #0ff;
  font-size: 2rem;
  position: relative;
  z-index: 2;
}

.holographic-card img::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;

  background: linear-gradient(
    0deg, 
    transparent, 
    transparent 30%, 
    rgba(0,255,255,0.3)
  );
  transform: rotate(-45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.holographic-card img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px #ddd
}

.holographic-card img:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(100%);
}
.btn-mauritanie {
    color: #003f5c !important;
    background-color: transparent;
    border: 2px solid #ffc107 !important;
    font-weight: 600;
    /* padding: 12px 30px; */
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Effet au survol (Hover) */
.btn-mauritanie:hover {
    background-color: #003f5c !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 63, 92, 0.3) !important;
    transform: translateY(-2px);
}

/* Effet au clic */
.btn-mauritanie:active {
    transform: translateY(0);
}

/* Adaptation mobile (Pleine largeur sur téléphone) */
@media (max-width: 767px) {
    .btn-mauritanie {
        width: 100%;
        display: block;
    }
}
/* Améliorer la visibilité du bloc intérieur du diaporama */
.hero-content-inner {
    background: rgba(0, 0, 0, 0.4); /* Calque noir à 40% d'opacité */
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px); /* Effet de flou moderne sur l'image derrière */
    max-width: 700px;
    margin: 0 auto;
}

/* Forcer le texte en blanc pour qu'il ressorte */
.hero-content-inner h1, 
.hero-content-inner .hero-title,
.hero-content-inner p,
.hero-content-inner .hero-subtitle {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Ombre portée pour la lecture */
}