/* ==========================================================================
   Global Mouse Hover Wave Effect
   ========================================================================== */
.cursor-ripple {
  position: fixed;
  pointer-events: none;
  width: 10px;
  height: 10px;
  background: rgba(44, 179, 184, 0.15); /* Light teal wave */
  border: 1px solid rgba(14, 131, 136, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: cursorWaveAnim 0.8s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
  z-index: 99999;
}

.cursor-ripple.click-ripple {
  width: 20px;
  height: 20px;
  background: transparent;
  border: 2px solid var(--c-gold);
  animation: cursorClickAnim 1s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

@keyframes cursorWaveAnim {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(5);
    opacity: 0;
  }
}

@keyframes cursorClickAnim {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    border-width: 2px;
  }
  100% {
    transform: translate(-50%, -50%) scale(8);
    opacity: 0;
    border-width: 0;
  }
}
