/* PETITE BANNIÈRE FESTIVE */
.banner {
  width: 100%;
  max-width: 400%;
  margin: 50px auto;
  padding: 18px 18px;
  border-radius: 0px;
  background: linear-gradient(90deg, #eb2d3a, #0c079d, #1f729b, #55d3dc);
  background-size: 300% 100%;
  animation: gradientMoveFR 6s ease infinite;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

/* TEXTE */
.bannertext {
  font-size: 25px;
  font-weight: 700;
  color: white;
  position: relative;
  z-index: 2;
  animation: glowFR 2s ease infinite;
}

/* EFFET DE GRADIENT ANIME */
@keyframes gradientMoveFR {
  0% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
  100% { background-position: 0% 0; }
}

/* BRILLANCE / SCINTILLEMENT */
@keyframes glowFR {
  0% { text-shadow: 0 0 5px white; }
  50% { text-shadow: 0 0 12px white; }
  100% { text-shadow: 0 0 5px white; }
}


/* PARTICULES DE LUMIÈRE 
.banner::after {
  content: "2026";
  position:relative ;
   bottom: 0;             En bas
  top: 10;
  left: 0;
  width: 50%;
  font-size: 30px;
  color: rgba(255,255,255,0.7);
  animation: sparkleFR 4s linear infinite;
} */

@keyframes sparkleFR {
  0% { transform: translateX(-20px); opacity: 0.6; }
  50% { transform: translateX(20px); opacity: 0.9; }
  100% { transform: translateX(-20px); opacity: 0.6; }
}

