@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-logo {
  animation: fadeIn 1s ease-out;
}

.hero-subtitle {
  animation: slideUp 1s ease-out 0.2s both;
}

.hero-tagline {
  animation: slideUp 1s ease-out 0.4s both;
}

.info-card {
  animation: slideUp 1s ease-out both;
}

.info-card:nth-child(1) {
  animation-delay: 0.6s;
}

.info-card:nth-child(2) {
  animation-delay: 0.75s;
}

.info-card:nth-child(3) {
  animation-delay: 0.9s;
}

.scroll-indicator {
  animation: fadeIn 1s ease-out 1.2s both, bounce 2s infinite 2s;
}


@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
