/* Fonts */
:root {
  --font-serif: "Georgia", "Times New Roman", serif;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  font-family: var(--font-sans);
}

h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: var(--font-serif);
}

/* Focus styles for accessibility */
*:focus-visible {
  outline: 2px solid #4B6347;
  outline-offset: 2px;
}

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