/* Animations & Transitions for CØFF Specialty Coffee */

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.03);
  }
}

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

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

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

/* Smooth reveal utility transitions */
.transition-smooth {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.magnetic-wrap {
  display: inline-block;
  position: relative;
  will-change: transform;
}

.magnetic-wrap > * {
  will-change: transform;
}
