/* ============================================================
   nav.css — Top navigation bar
   ============================================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
  transition: box-shadow 0.3s;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.nav-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.1px;
  line-height: 1.3;
  display: block;
}

.nav-logo-sub {
  font-size: 11px;
  font-weight: 400;
  color: var(--ink3);
  letter-spacing: 0.2px;
  display: block;
  margin-top: 1px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 13px;
  color: var(--ink2);
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent);
}

/* CTA button */
.nav-cta {
  padding: 9px 20px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--accent);
  transform: scale(1.02);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  nav {
    padding: 0 20px;
  }
  .nav-links {
    display: none; /* Add a hamburger menu here if needed */
  }
}
