/* home-nav.css — override .topbar to match the LP1/LP2 white sticky nav.
   Loaded LAST (after vitrine.css) so it wins the cascade. */

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  height: 56px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  color: var(--fg1);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar .brand,
.topbar .brand-kicker {
  color: var(--fg1);
}
.topbar .brand .dot { color: var(--accent); }
.topbar .brand-kicker { color: var(--fg3); }

.topbar .actions {
  display: flex;
  gap: 4px;
  align-items: center;
}

.topbar .navlink {
  color: var(--accent);
  background: transparent;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background 120ms, color 120ms;
}
.topbar .navlink:hover {
  background: var(--bg2);
  color: var(--accent-dark);
}

.topbar .navlink.primary {
  background: var(--accent);
  color: #fff;
  padding: 8px 14px;
  font-weight: 600;
}
.topbar .navlink.primary:hover {
  background: var(--accent-dark);
  color: #fff;
}

@media (max-width: 720px) {
  .topbar {
    padding: 0 16px;
    height: 52px;
  }
  .topbar .brand-kicker { display: none; }
  .topbar .navlink:not(.primary) { display: none; }
  .topbar .navlink.primary {
    padding: 7px 12px;
    font-size: 12px;
  }
}
