/* ---------- navbar (includes/nav.stpl) ---------- */

.navbar {
  background-color: var(--velvet) !important;
  box-shadow: 0 2px 10px rgba(107, 31, 69, 0.25);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gold-soft) !important;
  letter-spacing: 0.02em;
}
.navbar-brand:hover {
  color: #fff !important;
}
.navbar-brand-logo {
  height: 44px;
  width: auto;
}
.navbar-brand-word {
  line-height: 1;
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(255, 246, 240, 0.85) !important;
  font-weight: 500;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-item.active .nav-link {
  color: var(--gold-soft) !important;
}

.navbar-toggler {
  border-color: rgba(232, 211, 160, 0.4);
}
.navbar-toggler-icon {
  filter: invert(1);
}

/* account name + badges in the nav */
#navbarDropdownMenuLink {
  color: #fff5f0 !important;
}

/* language flags */
.lang-flags {
  display: flex;
  align-items: center;
  gap: 2px;
}
.lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  line-height: 1;
  padding: 6px 8px;
  border-radius: 8px;
  opacity: 0.55;
  transition: opacity 0.15s ease, background-color 0.15s ease;
}
.lang-flag:hover {
  opacity: 0.85;
  background-color: rgba(255, 255, 255, 0.08);
}
.lang-flag.is-current {
  opacity: 1;
  background-color: rgba(243, 163, 92, 0.18);
  box-shadow: inset 0 0 0 1px rgba(243, 163, 92, 0.5);
}
