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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  background-color: white;
  color: #1f2937;
}

/* Typography */
h1 {
  @apply text-4xl font-bold;
}

h2 {
  @apply text-3xl font-bold;
}

h3 {
  @apply text-2xl font-semibold;
}

/* Forms */
input,
textarea,
select {
  @apply rounded border border-gray-300 px-3 py-2;
  font-inherit: inherit;
}

input:focus,
textarea:focus,
select:focus {
  @apply border-primary-600 outline-none ring-2 ring-primary-100;
}

/* Buttons */
button {
  @apply cursor-pointer transition-colors;
}
