@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #c5c5c5;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleUp {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.animate-fade-in {
  animation: fadeIn 0.3s ease-out forwards;
}

.animate-scale-up {
  animation: scaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Slide track transition */
#cards-slider-track {
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Watercolor masking styles */
.watercolor-mask-1 {
  clip-path: url(#watercolor-clip-1);
}
.watercolor-mask-2 {
  clip-path: url(#watercolor-clip-2);
}
.watercolor-mask-3 {
  clip-path: url(#watercolor-clip-3);
}
.watercolor-mask-4 {
  clip-path: url(#watercolor-clip-4);
}
