/* ============================================
   AOS Custom Overrides
   ============================================ */

/* Slightly reduce default AOS duration */
[data-aos] {
  transition-duration: 600ms;
}

/* Disable AOS on mobile for performance if needed */
@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ============================================
   Custom Animations
   ============================================ */

/* Fade in up - used as supplement to AOS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Marquee scroll animation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-marquee {
  animation: marquee 30s linear infinite;
}

/* Pulse subtle - for floating chat button */
@keyframes pulseSoft {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.animate-pulse-soft {
  animation: pulseSoft 2s ease-in-out infinite;
}
