/**
 * ScrollReveal CSS - Modern AOS replacement
 * Minimal CSS for scroll animations
 */

/* Base styles for all animated elements */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* Fallback for no-JS */
@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Print styles - no animations */
@media print {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
