/* ════════════════════════════════
   FLAVANTO — SHARED NAV STYLES
   Style: transparent, light
════════════════════════════════ */

nav {
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 0 60px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  border-bottom: none;
  overflow: visible;
  transition: background 0.3s;
}
nav.scrolled {
  background: rgba(253,246,236,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Logo hidden by default — show only if image loads */
.nav-logo {
  font-family: 'Cormorant Garamond', 'Season Serif', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white, #2A1F14);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img { height: 38px; width: auto; display: block; }

.nav-center {
  display: flex; gap: 0; list-style: none; height: 72px;
}
.nav-item {
  position: relative; height: 72px; display: flex; align-items: center;
}
.nav-item > a {
  font-family: 'Jost', 'Season Mix', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(42,31,20,0.7);
  text-decoration: none;
  padding: 0 18px;
  height: 72px;
  display: flex; align-items: center;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-item > a:hover { color: #2A1F14; }

/* Right side */
.nav-right { display: flex; align-items: center; gap: 20px; }

.nav-lang {
  display: flex; align-items: center; gap: 4px;
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.nav-lang-btn {
  color: rgba(42,31,20,0.45);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
  cursor: pointer;
}
.nav-lang-btn:hover, .nav-lang-btn.active { color: #2A1F14; }
.nav-lang-sep { color: rgba(42,31,20,0.2); }

.nav-cta {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: #2A1F14;
  background: #F28C8C;
  border: none;
  border-radius: 40px;
  padding: 10px 24px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: #d96f6f; color: #fff; }

@media (max-width: 960px) {
  nav { padding: 0 24px; }
  .nav-center { display: none; }
}
