/* ─────────────────────────────────────────
   SellFood.com — Shared Public Navigation
   sellfood-nav.css
   ───────────────────────────────────────── */

.sf-nav {
  background: #3B2314;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(59,35,20,0.25);
}

.sf-nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 900;
  color: #FAF6EF;
  text-decoration: none;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.sf-nav-logo span {
  color: #D4891A;
}

.sf-nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.sf-nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(250,246,239,0.65);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.sf-nav-links a:hover {
  color: #FAF6EF;
}

.sf-nav-links a.sf-nav-active {
  color: #FAF6EF;
}

.sf-nav-cta {
  background: #D4891A !important;
  color: #3B2314 !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s !important;
  white-space: nowrap;
}

.sf-nav-cta:hover {
  background: #F0A830 !important;
  color: #3B2314 !important;
}

/* Responsive — hide nav links on small screens */
@media (max-width: 680px) {
  .sf-nav-links {
    gap: 1rem;
  }
  .sf-nav-links a:not(.sf-nav-cta):not(#sf-nav-auth-btn) {
    display: none;
  }
}
