/* === NAV-ALIGNMENT-FIX.CSS ===
 * Правильное выравнивание элементов навигации
 * ОБНОВЛЕНО: 2025-10-03
 */

/* Применяем ТОЛЬКО на десктопах */
@media (min-width: 769px) {
    /* Простой flexbox layout */
    .nav-container {
        display: flex !important;
        align-items: center !important;
        gap: 2rem !important;
    }

    /* Logo - слева */
    .logo {
        flex-shrink: 0;
        margin-right: auto;
    }

    /* Меню - после лого */
    .nav-menu {
        display: flex !important;
        gap: 2rem !important;
        align-items: center !important;
        flex-shrink: 0;
        position: static !important;
        transform: none !important;
    }

    /* Статус - между меню и кнопками, НА ОДНОМ УРОВНЕ */
    .nav-status {
        display: flex !important;
        align-items: center !important;
        flex-shrink: 0;
        margin-left: 2rem;
        position: static !important;
        transform: none !important;
        top: auto !important;
        left: auto !important;
    }

    /* Кнопки - справа */
    .nav-buttons {
        display: flex !important;
        gap: 1rem !important;
        align-items: center !important;
        flex-shrink: 0;
        margin-left: auto;
    }
}

/* Мобильная версия - лого и кнопки в одну строку */
@media (max-width: 768px) {
    .nav-container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0 1rem !important;
    }
    
    .logo {
        flex-shrink: 0;
        font-size: 1.3rem !important;
    }
    
    .nav-buttons {
        display: flex !important;
        gap: 0.5rem !important;
        flex-shrink: 0;
    }
    
    .nav-buttons .btn {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.8rem !important;
    }
    
    /* 24/7 по центру на мобилках */
    .nav-status {
        left: 25% !important;
    }
}
