/* Naruhodo Tutoring — standalone site header/footer chrome.
   For pages that do NOT link service-page.css (legal pages, test tools,
   one-off apps) so they can carry the standard site nav + footer without
   adopting the full service-page design.
   Rules are scoped to .top/.breadcrumbs/.foot only: no :root variables,
   no body/element resets, all colors hardcoded — safe to add to any page.
   Keep the markup + look in sync with the same classes in service-page.css. */

.top {
  background: #07131f;
  color: #e8f4f8;
  border-bottom: 1px solid rgba(56, 182, 212, 0.15);
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.65;
}

.top-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
}

.top a {
  color: #e8f4f8;
  text-decoration: none;
  font-weight: 700;
}

.top .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
}

.top .brand svg {
  width: 28px;
  height: 28px;
}

.top .navlinks {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
}

.top .navlinks a:hover {
  color: #7dd8e8;
}

.top .navlinks .book-now {
  background: #38b6d4;
  color: #0d2137;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
}

.breadcrumbs {
  background: #0d2137;
  color: #b8eef7;
  font-size: 0.85rem;
  padding: 0.6rem 0;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.breadcrumbs .wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: #7dd8e8;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs span[aria-hidden="true"] {
  opacity: 0.5;
}

.foot {
  background: #07131f;
  color: #b8eef7;
  padding: 2.5rem 0;
  font-size: 0.92rem;
  border-top: 1px solid rgba(56, 182, 212, 0.15);
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.65;
}

.foot .wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.foot a {
  color: #7dd8e8;
  text-decoration: none;
  margin-right: 1rem;
}

.foot a:hover {
  text-decoration: underline;
}

@media (max-width: 760px) {
  .top-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .top .navlinks {
    font-size: 0.88rem;
    gap: 0.75rem;
  }
}
