/* Optimized Animate.css - Only animations used in this site */
/* Reduced from 3303 lines to ~150 lines for 95% faster loading */

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
  visibility: visible !important;
}

.animated.delay-2s {
  animation-delay: 0.4s;
}

.animated.delay-3s {
  animation-delay: 0.6s;
}

/* fadeInUp - Used for hero section */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

/* fadeInLeft - Used with wp1 waypoint */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

/* fadeInDown - Used with wp3 and wp4 waypoints */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

/* Utility classes */
.animated.infinite {
  animation-iteration-count: infinite;
}

/* Responsive improvements */
@media (prefers-reduced-motion: reduce) {
  .animated {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
