/* Основные стили навбара */
.navbar {
  background-color: #282d43cc;
  padding: 10px 0;
  transition: background-color 0.3s ease;
}

.navbar.scrolled {
      background-color: rgb(0 0 0 / 81%);
}

/* Ссылки меню */
a.navbar-brand {
  color: #FFF;
}

a.nav-link {
  color: #FFF;
  font-weight: 700;
}

a.nav-link:hover {
  color: rgba(236,236,236,1.00);
}

/* Бургер-меню */
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(236, 236, 236, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler {
  border-color: rgba(236, 236, 236, 0.4);
  padding: 0.35rem 0.65rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 2px rgba(102, 102, 102, 0.25);
}

/* Позиционирование */
.fixed-top {
  /* position: relative;
  z-index: 500; */
}

/* Десктопное меню проектов */
.navbar-projects-desktop {
  margin-left: 2rem;
}

.navbar-projects-desktop .navbar-nav {
  flex-direction: row;
}

.navbar-projects-desktop .nav-item {
  margin-right: 1.5rem;
}

/* Ссылка учетной записи */
.account-link {
  display: flex !important;
  align-items: center;
  gap: 8px;
  color: white !important;
}

.account-icon {
  flex-shrink: 0;
}

/* Иконка аккаунта для мобильных */
.account-icon-mobile {
  padding: 8px;
  margin-right: 10px;
  color: white;
}

/* Правая часть для мобильных */
.navbar-mobile-right {
  margin-left: auto;
}

/* Выпадающее меню */
.dropdown-menu {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(40, 45, 67, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1060;
}

.dropdown-item {
  color: white;
}

.dropdown-item:hover {
  background: rgba(90, 185, 234, 0.3);
  color: white;
}

/* Заголовок "Проекты" в мобильном меню */
.projects-title-mobile {
  color: #d4eafd;
  font-size: 1rem;
  font-weight: 600;
  padding: 20px 15px 8px 15px;
  margin: 0 0 10px 0;
  background: linear-gradient(90deg, transparent, rgb(110 168 195 / 20%), transparent);
  text-align: center;
  position: relative;
}

.projects-title-mobile::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4eafd, transparent);
}

/* Стили для иконки Телеграм */
.telegram-link {
  display: flex !important;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.telegram-link:hover {
  color: #0088cc !important;
  transform: scale(1.05);
}

.telegram-link svg {
  flex-shrink: 0;
}

/* Адаптация для разных экранов */
@media (min-width: 992px) {
  .navbar-expand-lg .custom-navbar-collapse {
    display: none !important;
  }
  
  .navbar-projects-desktop {
    display: flex !important;
    margin-left: 2rem;
  }
  
  .navbar-account-desktop {
    display: flex !important;
  }
  
  .projects-title-mobile {
    display: none;
  }
  
  .telegram-nav-item .telegram-text {
    display: inline;
  }
}

@media (max-width: 991.98px) {
  .navbar-projects-desktop,
  .navbar-account-desktop {
    display: none !important;
  }
  
  .custom-navbar-collapse {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1050;
    background-color: #262b42e8 !important;
    padding: 0px 15px;
  }
  
  .navbar-nav {
    text-align: left;
  }
  
  .nav-item {
    margin: 5px 0;
  }
  
  .nav-link {
    padding: 12px 15px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .nav-link:hover {
    background-color: rgba(90, 185, 234, 0.2);
  }
  
  .telegram-text {
    display: inline;
  }
}

@media (max-width: 1200px) {
  .navbar-projects-desktop {
    margin-left: 0 !important;
  }
  
  .navbar-projects-desktop .nav-item {
    margin-right: 0rem !important;
  }
  
  .account-link .account-text {
    display: none;
  }
  
  .account-link {
    gap: 4px !important;
    padding: 0.3rem 0.5rem !important;
  }
}

@media (max-width: 1100px) {
  .navbar-projects-desktop .nav-item {
    margin-right: 0.7rem !important;
  }
  
  .navbar-projects-desktop .nav-link {
    font-size: 0.9rem;
    padding: 0.4rem 0.6rem !important;
  }
}

/* Анимация */
.navbar-collapse {
  transition: all 0.5s ease-in-out;
}


/* Стили для динамического меню */
.account-text {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Для мобильных устройств - уменьшаем максимальную ширину */
@media (max-width: 1200px) {
    .account-text {
        max-width: 120px;
    }
}

/* Анимация смены состояния */
.auth-hidden,
.auth-visible {
    transition: opacity 0.3s ease;
}