/* ── Custom Desktop Navbar ───────────────────────────────────────────── */

.bnh-nav {
  position: relative;
  width: 100%;
  background: transparent;
  border-bottom: none;
  box-sizing: border-box;
}

.bnh-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 32px;
  height: 72px;
}

/* Logo */
.bnh-nav-logo img {
  display: block;
  height: 48px;
  width: auto;
}

/* Desktop links */
.bnh-nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bnh-nav-links a {
  font-family: Exo, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1.5px solid transparent;
  border-radius: 30px;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.bnh-nav-links a:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
}

/* Telegram CTA — stands out */
.bnh-nav-links .bnh-nav-tg {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

.bnh-nav-links .bnh-nav-tg:hover {
  background: rgba(255,255,255,0.18);
  border-color: #fff;
}

/* Active page highlight */
.bnh-nav-links a.bnh-active {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.06);
}

/* Hamburger (mobile only) */
.bnh-nav-hamburger {
  display: none;
  background: none;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 8px;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  padding: 6px 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.bnh-nav-hamburger:hover {
  background: rgba(255,255,255,0.1);
}

/* Mobile dropdown */
.bnh-nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(0,0,0,0.97);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 24px 20px;
}

.bnh-nav-mobile-menu a {
  font-family: Exo, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}

.bnh-nav-mobile-menu a:last-child {
  border-bottom: none;
  margin-top: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
}

.bnh-nav-mobile-menu a:hover {
  color: rgba(255,255,255,0.7);
}

.bnh-nav-mobile-menu.open {
  display: flex;
}

/* ── Responsive ──────────────────────────────────────────────────────── */

@media (max-width: 991px) {
  /* Hide the custom nav on mobile — Webflow mobile nav takes over */
  .bnh-nav {
    display: none !important;
  }
  body {
    padding-top: 0;
  }
}

@media (min-width: 992px) {
  .bnh-nav-links {
    display: flex;
  }
  .bnh-nav-hamburger {
    display: none;
  }
  body {
    padding-top: 0;
  }
}

/* Hide only the Webflow desktop navbar — mobile one is kept as-is */
.navbar-3-desktop {
  display: none !important;
}
