/* ==========================================================================
   FOUZ DIGITAL - Core Keyframe Animations (animations.css)
   Interactive Float, Neon Pulsing, Reveals, and Spin loops
   ========================================================================== */

/* 1. Infinite Float (Soft Up & Down) */
@keyframes float-soft {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.anim-float-soft {
  animation: float-soft 5s infinite ease-in-out;
}

/* 2. Neon Pulsing Blur (Red dominant) */
@keyframes neon-pulse-red {
  0%, 100% {
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.2), 0 0 40px rgba(220, 38, 38, 0.1);
  }
  50% {
    box-shadow: 0 0 35px rgba(220, 38, 38, 0.5), 0 0 70px rgba(220, 38, 38, 0.2);
  }
}

.anim-pulse-red {
  animation: neon-pulse-red 3s infinite ease-in-out;
}

/* 3. Text Gradient Shimmer */
@keyframes text-shimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.anim-text-shimmer {
  background-size: 200% auto;
  animation: text-shimmer 4s infinite linear;
}

/* 4. Zoom Infinite (Pulse scale) */
@keyframes zoom-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.anim-zoom-pulse {
  animation: zoom-pulse 4s infinite ease-in-out;
}

/* 5. Spin Slow (For backgrounds/particles) */
@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.anim-spin-slow {
  animation: spin-slow 20s infinite linear;
}

/* 6. Fade In Up reveal */
@keyframes fadeInUpReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-fade-in-up {
  opacity: 0;
  animation: fadeInUpReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
