/* ===== NAVBAR FishFor (Bootstrap 5) ===== */

.nav_bar {
  background: linear-gradient(180deg, #0b0f12 0%, #0a1014 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav_container {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav_brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
}

.nav_brand_name {
  font-weight: 800;
  letter-spacing: 0.4px;
  font-size: 20px;
}

.nav_brand_tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.nav_links {
  gap: 6px;
}

.nav_link {
  color: rgba(255, 255, 255, 0.78) !important;
  padding: 10px 14px !important;
  border-radius: 12px;
  transition: 160ms ease;
}

.nav_link:hover,
.nav_link:focus {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08);
}

.nav_link.active {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.12);
}

.nav_link_cta {
  background: rgba(0, 186, 255, 0.14);
  border: 1px solid rgba(0, 186, 255, 0.35);
  color: #e9fbff !important;
}

.nav_link_cta:hover,
.nav_link_cta:focus {
  background: rgba(0, 186, 255, 0.22);
  border-color: rgba(0, 186, 255, 0.55);
}

.nav_right {
  margin-left: auto;
}

.nav_account {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 160ms ease;
}

.nav_account:hover,
.nav_account:focus {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.nav_account_icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.nav_account_text {
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* Mobile spacing inside collapsed menu */
@media (max-width: 991.98px) {
  .nav_links {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .nav_right {
    padding-bottom: 8px;
  }

  .nav_account {
    width: 100%;
    justify-content: center;
  }
}