body {
  font-family: 'Inter', sans-serif;
}

/* Custom Card Hover Effect */
.donation-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.donation-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Heart Pulse Animation (matches Tailwind animate-pulse but customized if needed) */
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}