/* =========================
   DESKTOP NAVBAR
========================= */

.navbar {
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);

  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo-img {
  height: 160px;              /* sweet spot for desktop */
  width: auto;
  display: block;
}


.logo-line {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #111111;
}

.logo-line.small {
  font-size: 0.65rem;
  font-weight: 500;
  opacity: 0.8;
}

.logo-line.large {
  font-size: 1.15rem;
  font-weight: 500;
}

.logo-line.medium {
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.7;
}

.navbar-logo {
  margin-left: -45px;
}


/* NAV LINKS */
.navbar-links {
  display: flex;
  gap: 32px;
}

.navbar-links a {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.navbar-links a:hover {
  color: var(--text-dark);
}

/* CTA BUTTON */
.navbar-cta {
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s ease;
}

.navbar-cta:hover {
  background: #1e4fd8;
}
