/**
 * Simple Animations - Light Theme Only
 */

/* Simple fade in for cards */
@keyframes fadeInSimple {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.website-card {
  animation: fadeInSimple 0.3s ease-out;
}

/* Stagger animation - very subtle */
.website-card:nth-child(1) {
  animation-delay: 0.05s;
}
.website-card:nth-child(2) {
  animation-delay: 0.1s;
}
.website-card:nth-child(3) {
  animation-delay: 0.15s;
}
.website-card:nth-child(4) {
  animation-delay: 0.2s;
}
.website-card:nth-child(5) {
  animation-delay: 0.25s;
}

/* Accessibility - respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
