/* =========================================================================
   ANIMATIONS & TRANSITIONS
   ========================================================================= */

/* --- Hover Animations --- */

/* Cards Lift & Shadow */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Image Scale on Hover */
.overflow-hidden {
  overflow: hidden;
}
.hover-scale-img {
  transition: transform 0.5s ease;
}
.hover-scale-wrapper:hover .hover-scale-img {
  transform: scale(1.05);
}

/* Keyframes */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(255, 107, 74, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255, 107, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 74, 0); }
}

.pulse-animation {
  animation: pulseGlow 2s infinite;
}
