/* ── Shared navbar — used by all public pages ── */
.navbar {
  position: sticky; top: 0; z-index: 300;
  background: rgba(248,247,244,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 56px;
}
.nav-logo {
  font-family: var(--font-serif); font-size: 17px;
  font-weight: 700; color: var(--navy);
}
.nav-logo:hover { text-decoration: none; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  padding: 5px 10px; font-size: 13.5px; font-weight: 500;
  color: var(--text-muted); border-radius: 6px;
  transition: color .15s, background .15s; text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); background: var(--navy-pale); }
.nav-links a.active { font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.btn-cv {
  padding: 7px 16px; font-size: 13px; font-weight: 600;
  color: #fff; background: var(--navy); border: none;
  border-radius: 7px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none; transition: background .15s;
}
.btn-cv:hover { background: var(--navy-light); color: #fff; text-decoration: none; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* Mobile nav overlay */
.nav-mobile {
  display: none; position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--bg-white); border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow); z-index: 299;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; padding: 12px 24px 16px; }
.nav-mobile ul li { border-bottom: 1px solid var(--border); }
.nav-mobile ul li:last-child { border-bottom: none; }
.nav-mobile ul a { display: block; padding: 10px 0; font-size: 15px; color: var(--text); }

/* Hamburger JS toggling is shared too */
@media (max-width: 720px) {
  .nav-links, .btn-cv { display: none; }
  .hamburger { display: flex; }
}
