/* ===== logo ===== */
.navbar-brand .site-logo {
  height: 50px;
  width: auto;
  max-width: 160px;
  max-height: 50px;
  object-fit: contain;
}

@media ( max-width: 991px ) {
  .navbar-brand .site-logo {
    height: 40px;
    max-height: 40px;
    max-width: 120px;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 1rem 0;
  }

  .navbar-nav .nav-link {
    width: 100%;
  }
}

/* ===== nav links ===== */
.dropdown-toggle::after {
  display: none;
}

.nav-link.dropdown-toggle.show .bi.bi-chevron-down::before {
  transform: rotate(180deg);
}

.navbar-expand-lg .navbar-collapse {
  justify-content: space-around;
}

.navbar-nav {
  gap: 12px;
}

.navbar-nav .nav-link {
  font-size: 11px;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1.5px solid #222;
  border-radius: 20px;
  padding: 6px 16px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.navbar-nav .nav-link:hover,
.navbar-nav .current-menu-item .nav-link {
  background: #222;
  color: #fff;
}