/* Custom styles beyond Tailwind */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #F9F7F2;
}

/* Active nav state */
.nav-link.active span {
    opacity: 1;
    transform: translateX(8px);
}

.nav-link span {
    transition: all 0.3s ease;
}

/* Custom scrollbar for webkit */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #2D1B2E;
}
::-webkit-scrollbar-thumb {
    background: #4A2C4A;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #F59E0B;
}

/* Selection color */
::selection {
    background: #F59E0B;
    color: #2D1B2E;
}
