/* ================================================================
   Oracle Marketing Nav — shared horizontal link row
   Loaded by all Oracle marketing pages (/oracle, /oracle/how-it-works,
   /oracle/gallery, /oracle/compare, /oracle/about, /oracle/testimonials,
   /pricing). Tokens it reuses (--gold, --gold-dim, --text-muted,
   Raleway, Cinzel) are defined on each host page.
   ================================================================ */

.oracle-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 14px 24px;
  margin: 0 auto 14px;
  max-width: 900px;
  text-align: center;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.oracle-nav a {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease;
  padding: 4px 2px;
  border-bottom: 1px solid transparent;
}

.oracle-nav a:hover,
.oracle-nav a:focus {
  color: var(--gold);
  outline: none;
}

.oracle-nav a[aria-current="page"] {
  color: var(--gold);
  border-bottom-color: var(--gold-dim);
}

@media (max-width: 640px) {
  .oracle-nav {
    gap: 18px;
    padding: 12px 16px;
  }
  .oracle-nav a { font-size: 0.68rem; letter-spacing: 0.14em; }
}
