/* Custom styles and overrides */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #F0FDFA; /* mint-50 */
}

/* Custom scrollbar for a cleaner look */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #F0FDFA;
}
::-webkit-scrollbar-thumb {
    background: #99F6E4;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #34D399;
}

/* Animation classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Active nav link state */
.nav-link.active {
    color: #34D399; /* mint-400 */
    border-left-color: #34D399;
}
