/* Enhanced navbar with shadow */
.navbar.sticky-top {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.5s ease;
}

.navbar-brand h2 {
    background: linear-gradient(to right, var(--primary), #2c9356);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    /* Removed transition for no animation */
}

/* Removed hover effect */

/* Navbar collapse animation */
.navbar-collapse.show {
    animation: slideDown 0.35s ease forwards;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhance dark mode toggle button */
#darkModeToggle {
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
