@theme {
    --color-uj-orange: #D95900;
    --font-inter: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

html {
    letter-spacing: -0.01em;
    scrollbar-width: thin;
    scrollbar-color: var(--color-uj-orange) transparent;
}

.nav-link {
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-uj-orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

#main-nav.scrolled {
    height: 5rem;
    background: oklch(92.9% 0.013 255.508 / 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* border-bottom-color: rgba(217, 89, 0, 0.3); */
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

::-webkit-scrollbar-track {
    background-color: oklch(92.9% 0.013 255.508);
}


::-webkit-scrollbar {
    width: 16px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: var(--color-uj-orange);
    border-radius: 100vw;
    border: 4px solid oklch(92.9% 0.013 255.508);
    background-clip: padding-box;
}

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