/* =====================
   Titre avec dégradé animé
   ===================== */
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.5rem; /* ajustable */
  text-align: center;

  background: linear-gradient(90deg, #114d8a, #3a5e91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* support partiel Firefox */
  color: transparent;

  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

/* Effet léger au survol desktop */
.hero-title:hover {
  transform: scale(1.05);
}

/* Ligne décorative animée sous le titre */
.hero-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #a15e5e, #739dc7);
  margin: 0.5rem auto 0;
  border-radius: 2px;
  animation: slide-line 1.5s infinite alternate;
}

@keyframes slide-line {
  0% { transform: translateX(-20%); }
  100% { transform: translateX(20%); }
}
