/* 
 * ДЕСКТОПНОЕ МЕНЮ - полностью независимые стили
 * Не пересекается с мобильным меню
 */

/* Десктопная навигация */
.desktop-navbar {
    background-color: #004317 !important;
    color: #ffffff !important;
    min-height: 60px !important;
    max-height: 60px !important;
    height: 60px !important;
    padding: 10px 1rem !important;
}

/* Десктопный логотип */
.desktop-navbar-logo {
    height: 40px !important;
    max-width: 80px !important;
    width: auto !important;
    object-fit: contain !important;
    filter: brightness(0) invert(1) !important;
}

/* Десктопный бренд */
.desktop-navbar .navbar-brand {
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
}

/* Десктопные ссылки */
.desktop-nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.5rem 0.75rem !important;
    border-radius: 0.25rem !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
}

.desktop-nav-link:hover {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.desktop-nav-link.active {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.2) !important;
}

/* Десктопный dropdown */
.desktop-dropdown-menu {
    background-color: #004317 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3) !important;
}

.desktop-dropdown-item {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.4rem 0.8rem !important;
    text-decoration: none !important;
    font-size: 0.85rem !important;
}

.desktop-dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

.desktop-dropdown-menu .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Десктопная навигация */
.desktop-navbar-nav {
    display: flex !important;
    width: 100% !important;
    justify-content: space-between !important;
    align-items: center !important;
}

/* Стили для иконок в десктопном меню */
.desktop-nav-link i {
    color: rgba(255, 255, 255, 0.9) !important;
}

.desktop-nav-link:hover i {
    color: #ffffff !important;
}

/* Анимации для десктопного меню */
.desktop-nav-link {
    position: relative !important;
    overflow: hidden !important;
}

.desktop-nav-link::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent) !important;
    transition: left 0.5s ease !important;
}

.desktop-nav-link:hover::before {
    left: 100% !important;
}

/* Специальные стили для активных ссылок */
.desktop-nav-link.active::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 80% !important;
    height: 2px !important;
    background-color: #ffffff !important;
    border-radius: 1px !important;
}

/* Responsive для очень больших экранов */
@media (min-width: 1400px) {
    .desktop-navbar {
        min-height: 70px !important;
        max-height: 70px !important;
        height: 70px !important;
        padding: 15px 1rem !important;
    }
    
    .desktop-navbar-logo {
        height: 50px !important;
        max-width: 100px !important;
    }
    
    .desktop-navbar .navbar-brand {
        height: 50px !important;
    }
    
    .desktop-nav-link {
        padding: 0.6rem 1rem !important;
        font-size: 0.95rem !important;
    }
}

