/* =============================================
   Scroll Entrance Animations - Sanitaetshaus 2022
   ============================================= */

/* Barrierefreiheit: Animationen deaktivieren bei Nutzer-Praeferenz */
@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Druckansicht: Alle Inhalte sofort sichtbar */
@media print {
  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ----- Basis: Elemente starten unsichtbar ----- */
[data-animate] {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

/* ----- Animations-Varianten ----- */

/* Einblenden + nach oben gleiten (Standard) */
[data-animate="fade-up"] {
  transform: translateY(30px);
}

/* Nur Einblenden */
[data-animate="fade-in"] {
  transform: none;
}

/* Von links einblenden */
[data-animate="slide-left"] {
  transform: translateX(-40px);
}

/* Von rechts einblenden */
[data-animate="slide-right"] {
  transform: translateX(40px);
}

/* ----- Sichtbar-Zustand (per JS-Klasse) ----- */
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* ----- Stagger: Verzoegerung per CSS Custom Property ----- */
[data-animate][style*="--delay"] {
  transition-delay: var(--delay, 0ms);
}
