/* Custom styles for 1729 landing page */

/* Serif font stack */
body {
  font-family: Georgia, 'Times New Roman', serif;
}

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

/* Custom button styles */
button {
  font-family: Georgia, 'Times New Roman', serif;
  cursor: pointer;
}

/* Improve text rendering */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Focus states for accessibility */
button:focus {
  outline: 2px solid #2d2d2d;
  outline-offset: 2px;
}

/* Link hover states */
a:hover {
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
  background: #1a1a1a;
}