/* Navbar Styles */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(var(--primary-rgb), 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.15);
    padding: 0.5rem 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
    letter-spacing: -0.5px;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

.theme-switcher {
    background: rgba(var(--primary-rgb), 0.1);
    border: none;
    color: var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

[data-theme="dark"] .theme-switcher {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

.theme-switcher:hover {
    transform: rotate(15deg) scale(1.1);
}