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

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
  background-color: #0A0A0A;
}

/* Custom Selection Colors */
::selection {
  background-color: rgba(183, 110, 121, 0.3);
  color: #ffffff;
}

/* Base style resets */
body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Gavel pulse and custom keyframe animations */
@keyframes slow-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(183, 110, 121, 0.35);
  }
  50% {
    transform: scale(1.028);
    box-shadow: 0 6px 25px rgba(183, 110, 121, 0.60);
  }
}

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

/* Subtle fade in animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Custom lucide adjustments */
.lucide {
  stroke-width: 2px;
}
