/**
 * Custom Scrollbar Styles
 * Matches the site color scheme:
 * Primary: #021526
 * Secondary: #BE6E46
 * Accent: #E9EEDE
 */

/* Lenis Recommended Styles */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important; /* Disable native smooth scroll to let Lenis handle it */
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* Custom Scrollbar Styling (Webkit) */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #021526; /* Primary Dark Blue */
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background-color: #BE6E46; /* Secondary Orange */
    border-radius: 5px;
    border: 2px solid #021526; /* Padding effect */
    transition: background-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #d17e55;
}

/* Firefox Scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: #BE6E46 #021526;
}
