/*
 * Animation helper classes and keyframes
 * Provides simple fade, slide and bounce animations used throughout the site.
 */

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slide-up {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.fade-in {
  animation: fade-in 0.6s ease-in-out both;
}

.slide-up {
  animation: slide-up 0.6s ease-in-out both;
}