@tailwind base;
@tailwind components;
@tailwind utilities;

body {
  font-family: var(--font-inter), 'Inter', sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
}

/* Montserrat for all headings and large text */
h1, h2, h3, h4, h5, h6, section, span,
.text-xl, .text-2xl, .text-3xl, .text-4xl, .text-5xl, .text-6xl, .text-7xl, .text-8xl, .text-9xl {
  font-family: var(--font-montserrat), sans-serif;
}

/* Custom scrollbar for cleaner look */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  background: #e5e5e5;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #d4d4d4;
}
