
/* === v97 Mobile Drawer (clean) === */
.mobile-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 0;
}
.mobile-toggle .bar {
  display:block;
  width: 26px;
  height: 2px;
  background: #fff;
}

@media (min-width: 992px){
  .mobile-toggle { display: none !important; }
}

@media (max-width: 991px){
  /* Hide the desktop nav on mobile */
  #navbar .navbar-collapse { display: none !important; }
}

/* Center desktop menu and restore spacing/colour like v93 */
#navbar .navbar-collapse { justify-content: center; }
#navbar .navbar-nav {
  gap: 24px;
  white-space: nowrap;
  margin-left: auto;
  margin-right: auto;
}
#navbar .navbar-nav .nav-link {
  color: #fff !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  font-weight: 500;
}
#navbar .navbar-nav .nav-link:hover,
#navbar .navbar-nav .nav-link:focus,
#navbar .navbar-nav .nav-link.active {
  color: #03C4EB !important;
}

/* Drawer */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2500;
  opacity: 0;
  transition: opacity .25s ease;
}
.drawer-overlay.show { opacity: 1; }

.mobile-drawer {
  position: fixed; top: 0; right: -280px;
  width: 280px; height: 100dvh;
  background: #111;
  z-index: 3000;
  padding-top: 84px;
  box-shadow: -6px 0 16px rgba(0,0,0,.2);
  transition: right .3s ease;
}
.mobile-drawer.show { right: 0; }

.mobile-nav { display: flex; flex-direction: column; }
.mobile-link {
  display: block;
  padding: 14px 22px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #1d1d1d;
  font-size: 18px;
}
.mobile-link:hover { background: #1a1a1a; }

/* Ensure navbar background is original (not forced white) */
.navbar { background: transparent !important; }
