@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;900&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

html {
  scroll-behavior: smooth;
}

/* Custom scrollbar to match the Elegant Vibrant design */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #FFFBF4;
}
::-webkit-scrollbar-thumb {
  background: #2D241E;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #FF8C42;
}

/* Grab styles */
.cursor-grab {
  cursor: grab;
}
.cursor-grabbing {
  cursor: grabbing;
}

/* Custom animations */
@keyframes pulse-slow {
  0%, 100% { opacity: 0.1; transform: scale(1); }
  50% { opacity: 0.2; transform: scale(1.05); }
}

.animate-pulse-slow {
  animation: pulse-slow 8s infinite ease-in-out;
}
