/* Навигация */
.navbar-brand {
    font-weight: 600;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

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

.navbar-nav .nav-link.active {
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

/* Dropdown */
.dropdown-menu {
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    transition: all 0.2s ease;
}

/* Footer */
footer a:hover {
    color: #fff !important;
}

.social-links a {
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* Логотип в navbar */
.navbar-brand img {
    height: 40px;
    width: auto;
    transition: opacity 0.25s ease, transform 0.3s ease;
}

.navbar-brand:hover img {
    opacity: 0.85;
    transform: scale(1.04);
}

/* Логотип в футере */
.footer-logo {
    height: 36px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.25s ease;
}

footer .footer-logo:hover {
    opacity: 1;
}