/* Floww Ecosystem Navigation — companion CSS for nav-snippet.html */
/* Source: dev-build/nav-snippet.css */
/* Import tokens.css BEFORE this file (tokens provides the custom properties) */

.floww-nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.floww-nav-wrapper.scrolled {
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--color-border, rgba(255, 255, 255, 0.08));
}

.floww-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  max-width: 1200px;
  margin: 0 auto;
}

.floww-wordmark {
  font-family: var(--font-brand);
  font-style: italic;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--color-text);
  text-decoration: none;
}

.floww-wordmark:hover {
  color: var(--color-terra);
}

.floww-nav-links {
  display: flex;
  gap: var(--space-6);
  align-items: center;
}

.floww-nav-links a {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.15s ease;
}

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

.floww-nav-links a[aria-current="page"] {
  color: var(--color-text);
  font-weight: 500;
}
