/* Base styles for Cappa Pulita */

:root {
  --primary-color: #FF8C00;
  --secondary-color: #111111;
  --accent-color: #F5F5F7;
}

body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

::-webkit-scrollbar-thumb {
  background: #FF8C00;
  border-radius: 10px;
}

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