/* assets/css/animations.css */

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

.animate-pulse {
  animation: pulse 2.5s infinite ease-in-out;
}

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

.animate-slide-in {
  animation: slideInUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

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

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

/* Floating water bubbles */
.bubble-float {
  position: absolute;
  bottom: -30px;
  pointer-events: none;
  animation: floatUp 8s infinite ease-in;
}

.bubble-inner {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(56, 189, 248, 0.3) 0%, rgba(2, 132, 199, 0.08) 60%, rgba(2, 132, 199, 0.35) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.5), 0 4px 8px rgba(2, 132, 199, 0.12);
  transition: transform 0.4s cubic-bezier(0.15, 0.85, 0.3, 1);
}

@keyframes floatUp {
  0% {
    bottom: -30px;
    transform: translateX(0) scale(1);
    opacity: 0.8;
  }
  100% {
    bottom: 110%;
    transform: translateX(80px) scale(0.4);
    opacity: 0;
  }
}
