/* ==========================================================
   Unified site navigation — nav.css
   Phase 2B — accotink.org
   All rules scoped under .site-nav to avoid collisions.
   No dependency on acc.css, menuHor.css, or page-level styles.
   ========================================================== */

/* ---- Reset & container ---- */

.site-nav {
  position: relative;
  z-index: 9999;
  width: 100%;
  background: #ffffc3;
  border-bottom: 2px solid #a6633e;
  box-sizing: border-box;
}

.site-nav *,
.site-nav *::before,
.site-nav *::after {
  box-sizing: border-box;
}

.site-nav-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* ---- Shared row styles ---- */

.site-nav-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.site-nav a {
  display: inline-block;
  font:
    bold 10pt Arial,
    Helvetica,
    sans-serif;
  text-decoration: none;
  padding: 4px 8px;
  line-height: 1.2;
  white-space: nowrap;
}

/* ---- Row 1 — primary navigation (navy) ---- */

.site-nav-row1 {
  background: #182478;
}

.site-nav-row1 a {
  color: #faebd7;
}

.site-nav-row1 a:hover,
.site-nav-row1 a:focus {
  background: #2a3a8a;
  color: #faebd7;
  text-decoration: none;
}

/* ---- Row 2 — topics & mission (pale yellow) ---- */

.site-nav-row2 {
  background: #f5f0c8;
  border-top: 1px solid #e0dbb0;
}

.site-nav-row2 a {
  color: #000000;
}

.site-nav-row2 a:hover,
.site-nav-row2 a:focus {
  background: #e8e2a0;
  text-decoration: none;
}

/* ---- Watershed 911 alert treatment ---- */

.site-nav a.site-nav-alert {
  color: #cc0000;
  font-weight: bold;
}

.site-nav-row2 a.site-nav-alert:hover,
.site-nav-row2 a.site-nav-alert:focus {
  background: #f5d0d0;
}

/* ---- Visited-link override (keep nav colors stable) ---- */

.site-nav a:visited {
  color: inherit;
}

.site-nav-row1 a:visited {
  color: #faebd7;
}

.site-nav a.site-nav-alert:visited {
  color: #cc0000;
}

/* ---- Mobile adjustments ---- */

@media (max-width: 480px) {
  .site-nav a {
    font-size: 9pt;
  }
}
