/* =====================================================================
   Tiny Valley Tots — MENU (structure only)
   ===================================================================== */

/* Desktop primary nav row (pills themselves styled in buttons.css) */
.site-header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  line-height: 1;
}

/* Make sure anchors are tidy and don’t inherit underlines */
.site-header nav a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Mobile dropdown content look (panel positioning is in site.css) */
.mobile-nav .menu-list-mobile {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  background: #fff;
  border-radius: 14px;
  box-sizing: border-box;
  max-height: 70vh;
  overflow-y: auto;
}

/* Mobile: keep items pill-like but easy to tap */
.mobile-nav .menu-list-mobile a {
  display: inline-block;
  margin: 0.5rem auto;
  text-align: center;
  line-height: 1;
}

/* Neutral active nudge; coloured glows come from buttons.css */
.site-header nav a.is-active,
.site-header nav a[aria-current="page"] {
  transform: translateY(1px);
}
