/* Custom Navigation Hover Effects */
/* This file is loaded after style.css to ensure these styles take precedence */

.nav-link {
    position: relative;
    display: inline-block;
    transition: transform 0.25s ease-out, color 0.25s ease-out;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #2E593A;
    transition: width 0.3s ease-in-out;
}

.nav-link:hover {
    transform: translateY(-2px);
    color: #2E593A;
}

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

/* Active state for navigation */
.nav-link.active {
    color: #2E593A;
}

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