.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  height: fit-content;
  background: var(--wu-nav-bg);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: block;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 25px;
}

.logo img {
  height: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: var(--wu-nav-text);
  font-size: 15px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: 0.3s;
}

.nav-links li a:hover {
  background: var(--wu-nav-hover);
}

.nav-links li a.active {
  background: var(--wu-nav-active-bg);
  color: var(--wu-nav-active-text);
  font-weight: bold;
}

.nav-btn {
  display: flex;
  align-items: center;
}

.btn {
  padding: 8px 16px;
  border: 1px solid var(--wu-nav-text);
  border-radius: 20px;
  text-decoration: none;
  color: var(--wu-nav-text);
  transition: 0.3s;
}

.btn:hover {
  background: var(--wu-nav-text);
  color: var(--wu-accent-contrast);
}

body.has-navbar {
  padding-top: 120px;
}
