/* Enhanced Smooth Scrolling */
:root {
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

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

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: #ff6b35;
  border-radius: 5px;
  transition: background 0.3s ease;
}

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

/* Firefox Scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #ff6b35 #1a1a1a;
}

/* Smooth transitions for all scrollable elements */
section, article, main {
  scroll-margin-top: 80px;
}
