/* ============================================
   Maxtel Theme — Animations & Keyframes
   ============================================ */

/* --- Keyframes --- */

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes flowLine {
  to { stroke-dashoffset: -100; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px) rotate(6deg); }
  to { opacity: 1; transform: translateY(0) rotate(6deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

/* --- Animation Utility Classes --- */

.animate-float-slow {
  animation: float 6s ease-in-out infinite;
}

.animate-float-med {
  animation: float 4s ease-in-out infinite;
}

.animate-float-fast {
  animation: float 3s ease-in-out infinite;
}

.animate-flow-line {
  animation: flowLine 20s linear infinite;
}

.animate-fade-in-up {
  animation: fadeInUp 1s ease-out forwards;
}

.animate-pulse-slow {
  animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
