/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #e5e7eb; /* Tailwind gray-200 */
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #d1d5db; /* Tailwind gray-300 */
}

/* Utility to hide scrollbar but allow scrolling (for Sidebar) */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

#work img {
   cursor: zoom-in;
}

