/* shared.css - sitewide header/footer + basic utilities */

* { box-sizing: border-box; }
body { margin: 0; }

.site-header {
  background: #154061;
  padding: 14px 18px;
}

.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: block;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.92;
  font-weight: 600;
}

.nav-links a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 6px; }

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.45);
  color: #ffffff;
}

.btn-primary {
  background: #F04B2B;
  color: #ffffff;
}

.site-footer {
  background: #154061;
  color: #ffffff;
  padding: 34px 18px;
  margin-top: 56px;
}

.footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.92;
  margin-right: 12px;
  white-space: nowrap;
}

.footer-links a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 6px; }

.muted { opacity: 0.88; }

@media (max-width: 820px) {
  .nav-cta { width: 100%; justify-content: flex-start; }
}
