/* navigation.css
   Split from the previous shared stylesheet to match the PriLink Digital CSS structure. */

.topbar {
  background: var(--ink);
  color: #f7fbfd;
  font-size: 0.86rem;
}

.topbar-inner,
.nav-inner,
.section,
.footer-inner {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar-inner {
  min-height: 42px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.topbar-address {
  justify-self: center;
  text-align: center;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: start;
}

.topbar-hours {
  justify-self: end;
  text-align: right;
}

.topbar a {
  color: #ffffff;
}

.topbar-address:hover {
  text-decoration: underline;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 227, 233, 0.85);
  backdrop-filter: blur(16px);
}

.nav-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 190px;
  height: 64px;
  object-fit: contain;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(29, 110, 165, 0.26);
}

.brand span {
  display: block;
  line-height: 1.05;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: #2d3c46;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 12px 13px;
  border-radius: 6px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: #e9f4f8;
}

.nav-links .nav-cta {
  margin-left: 6px;
  color: #071116;
  background: var(--gold);
  box-shadow: 0 10px 22px rgba(242, 184, 75, 0.24);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta.active {
  color: #071116;
  background: #ffc85c;
}

.nav-toggle {
  display: none;
  min-width: 68px;
  height: 52px;
  border: 0;
  background: transparent;
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  font-size: 1.08rem;
  font-weight: 800;
  padding: 0;
}
