@import "tailwindcss";

@theme {
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-space: "Space Grotesk", sans-serif;
}

:root {
  --bg: #000000;
  --text: #ffffff;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text);
  transition: background-color 0.5s ease, color 0.5s ease;
}

h1, h2, h3, .font-space {
  font-family: var(--font-space);
}

.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.theme-transition {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
