/* ============================================================================
   HEADER В СТИЛЕ GLASSMORPHISM
   Подключите после основных стилей в index.php
   ============================================================================ */

/* Основной стиль header*/
header,
.header,
.site-header {
  background: rgba(15, 15, 30, 0.4) !important;
  backdrop-filter: blur(5px) !important;
  -webkit-backdrop-filter: blur(5px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
  padding: 0 32px;
}



/* Если header фиксированный */
header.fixed,
.header.fixed,
.site-header.fixed {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
}

/* Логотип */
.logo,
.site-logo {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Навигация */
nav a,
.nav-link,
.menu-item a {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

nav a:hover,
.nav-link:hover,
.menu-item a:hover {
  color: #e313bf !important; /* Ваш акцентный цвет */
  text-shadow: 0 0 10px rgba(227, 19, 191, 0.5);
}

/* Кнопки в header */
.header button,
.header .btn {
  background: rgba(227, 19, 191, 0.2) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(227, 19, 191, 0.3) !important;
  color: #fff !important;
  transition: all 0.3s ease;
}

.header button:hover,
.header .btn:hover {
  background: rgba(227, 19, 191, 0.4) !important;
  border-color: rgba(227, 19, 191, 0.6) !important;
  box-shadow: 0 0 20px rgba(227, 19, 191, 0.4);
}

/* Варианты для разных структур header */

/* Вариант 1: Если у вас есть .navbar */
.navbar {
  background: rgba(15, 15, 30, 0.3) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Вариант 2: Если есть .top-bar */
.top-bar {
  background: rgba(15, 15, 30, 0.3) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}
