/* ==========================================================================
   AQUASCAPE STUDIO - LUXURY ANIMATIONS & MICRO-INTERACTIONS
   Animation Manifest: Keyframes, Glow Effects, Canvas Overlays, Transitions
   ========================================================================== */

/* Keyframe Animations */
@keyframes scrollWheel {
  0% { transform: translate(-50%, 0); opacity: 1; }
  50% { transform: translate(-50%, 14px); opacity: 0.4; }
  100% { transform: translate(-50%, 0); opacity: 1; }
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1.5deg); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-20px) scale(1.02); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 170, 0.2); }
  50% { box-shadow: 0 0 45px rgba(0, 212, 170, 0.6); }
}

@keyframes rippleWave {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

@keyframes rayShimmer {
  0%, 100% { opacity: 0.3; transform: rotate(-5deg) translateY(0); }
  50% { opacity: 0.7; transform: rotate(-3deg) translateY(-10px); }
}

/* Floating Utilities */
.float-element {
  animation: floatSoft 6s ease-in-out infinite;
}

.float-element-slow {
  animation: floatSlow 10s ease-in-out infinite;
}

.glow-pulse {
  animation: pulseGlow 4s ease-in-out infinite;
}

/* Background Light Rays Effect */
.light-rays-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% -20%, rgba(0, 212, 170, 0.15) 0%, transparent 70%);
  z-index: 2;
  animation: rayShimmer 12s ease-in-out infinite;
}

/* Section Background Animations Canvas Container */
.section-bg-canvas {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Card Glow Border Hover Animation */
.glow-card {
  position: relative;
}

.glow-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent-teal), transparent 50%, var(--highlight-gold));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.glow-card:hover::before {
  opacity: 1;
}

/* Ripple Click Effect Container */
.ripple-target {
  position: relative;
  overflow: hidden;
}

.ripple-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: rippleWave 0.7s linear;
  pointer-events: none;
}

/* Organic Wave Divider SVG */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.wave-divider .shape-fill {
  fill: var(--bg-dark);
}
