/* ===========================================
   ANIMATIONS — ECOLUXE
   =========================================== */

@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

@keyframes float {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% { opacity: 0.6; }
  50% { transform: translateY(50vh) translateX(30px); }
  90% { opacity: 0.6; }
  100% {
    transform: translateY(-100px) translateX(-20px);
    opacity: 0;
  }
}

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

@keyframes gentleGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(45, 212, 191, 0.2); }
  50% { box-shadow: 0 0 40px rgba(45, 212, 191, 0.35); }
}

/* Fade-up observer pattern */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-soft), transform 1s var(--ease-soft);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grid children */
.card-grid .fade-up:nth-child(1),
.dest-grid .fade-up:nth-child(1),
.values-grid .fade-up:nth-child(1),
.pillars .fade-up:nth-child(1) { transition-delay: 0.05s; }

.card-grid .fade-up:nth-child(2),
.dest-grid .fade-up:nth-child(2),
.values-grid .fade-up:nth-child(2),
.pillars .fade-up:nth-child(2) { transition-delay: 0.15s; }

.card-grid .fade-up:nth-child(3),
.dest-grid .fade-up:nth-child(3),
.values-grid .fade-up:nth-child(3),
.pillars .fade-up:nth-child(3) { transition-delay: 0.25s; }

.card-grid .fade-up:nth-child(4),
.dest-grid .fade-up:nth-child(4),
.values-grid .fade-up:nth-child(4),
.pillars .fade-up:nth-child(4) { transition-delay: 0.35s; }

.card-grid .fade-up:nth-child(5),
.dest-grid .fade-up:nth-child(5) { transition-delay: 0.45s; }

.card-grid .fade-up:nth-child(6),
.dest-grid .fade-up:nth-child(6) { transition-delay: 0.55s; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
}