/* Custom Styles for KC LOOKS Salon and Spa */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f5f0e0;
}

::-webkit-scrollbar-thumb {
    background: #2e643e;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1d4029;
}

/* Selection Color */
::selection {
    background-color: #2e643e;
    color: #fdfcf8;
}

/* Navigation Active State */
.nav-link.active {
    color: #2e643e;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background-color
