/* ============================================================
   GLOBAL NAVIGATION — SHARED COMPONENT
   Matches index.html canonical styling
   ============================================================ */

.top-nav {
  background: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.brand-mini img {
  height: 34px;
  width: auto;
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
}

.nav-link {
  color: #fff;
  margin-left: 18px;
  font-weight: 600;
  text-decoration: none;
}

.nav-link:hover {
  text-decoration: underline;
}

/* ================= MOBILE ================= */

@media (max-width: 820px) {
  .nav-inner {
    flex-direction: column;
    gap: 10px;
  }

  .nav-right {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-link {
    margin: 6px 10px;
  }
}
