/* =========================================================
   PURE BLUE SHIMMER TEXT (DUNKEL- UND HELLBLAU)
   ========================================================= */

:root {
  --neo-dark-blue:  #001133; /* Sehr tiefes, edles Dunkelblau */
  --neo-mid-blue:   #0044cc; /* Klassisches, kräftiges Blau */
  --neo-light-blue: #3363ff; /* Schönes, reines Hellblau (ohne Türkis) */
}

@keyframes neoFlow {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

h1,h2,h3,h4,h5,h6,
.hero h1, .hero h2, .hero h3 {
  /* ZEILE 19: Perfekter Übergang von Dunkel zu Hell und zurück */
  background: linear-gradient(90deg, #001133, #0044cc, #3369ff, #0044cc, #001133);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  
  padding: 0 4px;
  border-radius: 3px;

  animation: neoFlow 3s linear infinite;
}