/* ==========================================================================
   Whit Lincoln Portfolio - Animations & Micro-Interactions
   ========================================================================== */

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 15px var(--accent-glow), 0 0 30px rgba(0, 242, 254, 0.1);
  }
  50% {
    box-shadow: 0 0 25px var(--accent-glow), 0 0 50px rgba(0, 242, 254, 0.25);
  }
}

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

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

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

@keyframes shineEffect {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.shine-on-hover {
  position: relative;
  overflow: hidden;
}

.shine-on-hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.shine-on-hover:hover::before {
  transform: translateX(250%);
}

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

.wave-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--accent-cyan);
  pointer-events: none;
  animation: rippleWave 1.5s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
}
