@import "tailwindcss";
@source "../../javascript/**/*.{js,jsx}";
@source "../../../config/**/*.rb";

@theme {
  --font-cormorant: "Cormorant Garamond", Georgia, serif;
  --font-inter: "Inter", system-ui, sans-serif;
  --font-space: "Space Grotesk", system-ui, sans-serif;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: #0c0a09;
}
::-webkit-scrollbar-thumb {
  background: #44403c;
}
::-webkit-scrollbar-thumb:hover {
  background: #fbbf24;
}

/* Selection */
::selection {
  background: #fbbf24;
  color: #0c0a09;
}

/* Base */
body {
  background-color: #0c0a09;
  color: #f5f5f4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Image display */
img {
  display: block;
}

/* Focus visible */
:focus-visible {
  outline: 1px solid #fbbf24;
  outline-offset: 2px;
}
