:root {
  /* Light mode colors - Mont-Fort inspired minimal aesthetic */
  --color-bg: 255 255 255;
  --color-box: 249 250 251;
  --box-sd: 226 232 240;
  --box-border: 226 232 240;
  --heading-1: 15 23 42;
  --heading-2: 30 41 59;
  --heading-3: 51 65 85;
}

.dark {
  /* Dark mode colors */
  --color-bg: 3 7 18;
  --color-box: 17 24 39;
  --box-sd: 0 0 0;
  --box-border: 31 41 55;
  --heading-1: 255 255 255;
  --heading-2: 226 232 240;
  --heading-3: 203 213 225;
}

/* Mont-Fort inspired smooth transitions */
body {
  transition: background-color 0.3s ease;
}

/* Generous white space and clean typography */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar - minimal aesthetic */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgb(var(--color-bg));
}

::-webkit-scrollbar-thumb {
  background: rgb(var(--box-border));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(var(--heading-3));
}
