/* Основное меню */
.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
   
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.menu-left, .menu-right {
    display: flex;
    align-items: center;
    font-size: 14px;
}



.menu-logo {
    display: flex;
    align-items: center;
    font-family: 'Arsenal Bold', Arial, sans-serif;
}

.logo {
    height: 50px;
    margin-right: 10px;
}

.menu-logo h1 {
    margin: 0;
    font-size: 2.0em;
    color: black;
}

.menu-logo a {
    text-decoration: none;
}

.menu-item {
    margin: 0 20px;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.menu-item a {
    color: black;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
}

.menu-item a:hover {
    color: #D67940;
    text-decoration: none;
}

.menu-item i {
    display: none; /* Скрываем иконки по умолчанию */
    font-size: 20px;
    color: #D67940;
    margin-top: 20px;
}
.menu-item-bell{
    margin: 0 20px;
    cursor: pointer;
}
.dropdown {
    position: relative;
    display: inline-block;
    margin-left: 10px;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 5px 10px;
    border: 1px solid transparent;
    border-radius: 50px;
    width: 80px;
}

.circle {
    margin-right: 10px;
}

.chevron.rotate {
    transform: rotate(0deg); /* Поворачиваем чеврон при каждом открытии */
}

.chevron {
    transition: transform 0.3s ease;
    margin-left: auto;
    margin-top: 30% !important;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: -55px;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border: 1px solid #ddd;
    white-space: nowrap;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}
.dropdown-content.show {
    display: block;
  }
@media (max-width: 1024px) {
  
    .menu-logo h1{
        display:none;
    }
    .menu-center{
        display:none;
    }
    .menu-item a {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .menu-item a span {
        display: none; /* Прячем текст на мобильных устройствах */
    }
    .menu-item i {
        display: block; /* Показываем иконки */
        user-select: none;
    }
  
    .dropdown-toggle {
        padding: 5px 8px; /* Уменьшаем размер кнопки */
        width: 70px; /* Уменьшаем ширину dropdown */
    }

    .dropdown-toggle .circle img {
        width: 40px;
        height: 40px;
    }

    .dropdown-toggle .chevron {
        font-size: 14px;
    }

    .dropdown-content a {
        font-size: 14px; /* Уменьшаем размер текста в выпадающем меню */
        padding: 10px 12px; /* Уменьшаем внутренние отступы */
    }
    .logo {
        height: 40px;
        margin-right: none;
    }
}
@media (max-width: 768px) {
   
    .menu-logo h1{
        display:none;
    }
    .menu-center{
        display:none;
    }
    .menu-item a {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .menu-item a span {
        display: none; /* Прячем текст на мобильных устройствах */
    }
    .menu-item i {
        display: block; /* Показываем иконки */
        user-select: none;
    }
  
    .dropdown-toggle {
        padding: 5px 8px; /* Уменьшаем размер кнопки */
        width: 70px; /* Уменьшаем ширину dropdown */
    }

    .dropdown-toggle .circle img {
        width: 40px;
        height: 40px;
    }

    .dropdown-toggle .chevron {
        font-size: 14px;
    }

    .dropdown-content a {
        font-size: 14px; /* Уменьшаем размер текста в выпадающем меню */
        padding: 10px 12px; /* Уменьшаем внутренние отступы */
    }
    .logo {
        height: 40px;
        margin-right: none;
    }
}
@media (max-width: 480px) {
  
    .menu-logo h1{
        display:none;
    }
    .menu-center{
        display:none;
    }
    .menu-item a {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .menu-item a span {
        display: none; /* Прячем текст на мобильных устройствах */
    }
    .menu-item i {
        display: block; /* Показываем иконки */
        user-select: none;
        font-size:16px;
    }
    .dropdown-toggle {
        padding: 3px 5px;
        width: 60px;
    }

    .dropdown-toggle .circle img {
        width: 40px;
        height: 40px;
    }

    .dropdown-toggle .chevron {
        font-size: 12px;
    }

    .dropdown-content a {
        font-size: 12px;
        padding: 8px 10px;
    }
    .logo {
        height: 40px;
        margin-right: none;
    }
}
/* Unified theme base (menu) */
:root {
  --font-sans: 'NimbusSanLBoldCond', sans-serif;
  --color-primary: #D67940;
  --color-primary-contrast: #ffffff;
  --color-accent: #D67940;
  --color-text: #333333;
}

body { font-family: var(--font-sans); color: var(--color-text); }

.menu-item a:hover,
.menu-item i { color: var(--color-primary) !important; }
.messages i {
    color: #D67940;
    cursor: pointer;
}
  .fa-solid {
    font-size: 40px; /* Размер иконки */
    margin-bottom: 20px; /* Отступ снизу иконки */
  }