
/* ============================================
   ANIMATIONS
   ============================================ */

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

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

.meteo-card:nth-child(1) { animation-delay: 0.1s; }
.meteo-card:nth-child(2) { animation-delay: 0.2s; }
.meteo-card:nth-child(3) { animation-delay: 0.3s; }
.meteo-card:nth-child(4) { animation-delay: 0.4s; }