/* ---------------- Navbar Centralized Styles ---------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(246, 240, 232, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 14px 20px;
  border-bottom: 1px solid rgba(23,22,21,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav .brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}

.brand .logo {
  width: 150px;
  height: auto;
  max-height: 44px;
  object-fit: contain;
  border: none;
  background: transparent;
  box-shadow: none;
  display: block;
}

.brand h1 {
  font-family: "Fraunces", serif;
  font-size: 20px;
  margin: 0;
  font-weight: 700;
}

.nav-links {
  display: none;
  gap: 24px;
  font-weight: 600;
  font-size: 14px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  transition: color var(--t, 0.2s);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

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

/* Auth Buttons */
.btn {
  appearance: none;
  border: 1px solid var(--line, rgba(0,0,0,0.12));
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  background: rgba(255,255,255,0.6);
  color: var(--ink);
  transition: all var(--t, 0.2s);
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.btn.primary {
  background: var(--accent, #0f4c3a);
  color: #fff;
  border-color: var(--accent, #0f4c3a);
}

.btn.primary:hover {
  background: #0c3d2e;
  box-shadow: 0 8px 20px rgba(15,76,58,0.2);
}

.btn.ghost {
  background: transparent;
  border-color: transparent;
}

.btn.ghost:hover {
  background: rgba(0,0,0,0.03);
}

/* Media Query for Desktop Menu */
@media (min-width: 980px) {
  .nav-links {
    display: flex;
  }
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .nav {
    padding: 12px 16px;
  }
  .brand h1 {
    font-size: 18px;
  }
}
