/* ==========================================================================
   ШАПКА САЙТА И НАВИГАЦИЯ (NAVBAR)
   ========================================================================== */

.navbar {
    display: flex;
    align-items: center;
}

/* Фикс контейнера навбара: принудительно держит элементы в одну строку */
.navbar .container-fluid {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
}

/* Адаптивный логотип / Баннер в шапке */
#mainBanner, .navbar-brand img {
    max-height: 35px !important;
    width: auto !important;
    max-width: 60vw !important; /* Не дает вытеснить кнопку меню на узких экранах */
    object-fit: contain;
}

/* Кнопка гамбургера (меню) — всегда справа, не сжимается */
.navbar-toggler {
    flex-shrink: 0 !important;
    margin-left: 10px !important;
}

/* Темное выпадающее меню (переключатель языков и разделов) */
.dropdown-menu-dark {
    background-color: rgba(33, 37, 41, 0.95) !important;
    border: 1px solid #0F0 !important;
}

.dropdown-item {
    transition: background-color 0.2s;
}

.dropdown-item:hover {
    background-color: rgba(0, 255, 0, 0.2) !important;
    color: #fff !important;
}

/* Сама надпись "Телефон:" или "WhatsApp:" */
.contact-label {
    color: #faf402 !important;
    font-size: 0.9rem !important;
    font-weight: normal !important;
    display: inline-block !important;
    margin: 0 !important;
    white-space: nowrap !important;   /* Запрещаем разбивать слово напополам */
}

.contact-number { color: #0f0; font-weight: bold; }
.contact-name { color: #2bcab7; font-size: 0.9rem; }