.navbar {
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);

  width: var(--page-width);
  height: 76px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;

  padding: 0 28px;

  z-index: 1000;

  background: rgba(12, 12, 12, 0.58);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 24px;

  overflow: visible;

  box-shadow:
    0 10px 40px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.04);

  transition:
    background 0.3s ease,
    border 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;

  height: 76px;

  flex-shrink: 0;
}

.logo img {
  height: 112px;
  width: auto;

  display: block;
  object-fit: contain;

  transform: translateY(2px);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  list-style: none;

  flex: 1;
}

.nav-links a {
  position: relative;

  text-decoration: none;

  color: rgba(255,255,255,0.82);

  font-size: 0.92rem;
  font-weight: 600;

  padding: 12px 16px;

  border-radius: 14px;

  overflow: hidden;

  transition:
    color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}

.nav-links a::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.12),
      rgba(255,255,255,0.02)
    );

  opacity: 0;

  transform: scale(0.82);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;

  border-radius: inherit;
}

.nav-links a:hover::before,
.nav-links a.active::before {
  opacity: 1;
  transform: scale(1);
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
  transform: translateY(-2px);
}

.nav-links a.active {
  background: rgba(255,255,255,0.05);
}

.nav-book {
  flex-shrink: 0;

  text-decoration: none;

  color: #161616;

  background: #d5ac4c;

  text-transform: uppercase;

  font-weight: 800;

  font-size: 0.76rem;

  letter-spacing: 1.4px;

  padding: 16px 24px;

  border-radius: 999px;

  border: 1px solid rgba(255,255,255,0.08);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.nav-book:hover {
  transform: translateY(-2px);

  background: #e2b85a;

  box-shadow:
    0 10px 28px rgba(213, 172, 76, 0.28);
}

/* .logo {
  display: flex;
  align-items: center;
  gap: 16px;

  text-decoration: none;

  color: #d5ac4c;

  flex-shrink: 0;
} */ 
