/* ------------------ GLOBAL HEADER / BURGER MENU ------------------ */

/* ---------- Burger Button Colors ---------- */
.site-header button {
  background-color: #666666;   /* Tailwind blue-700 */
  border: none;
}

.site-header button:hover {
  background-color: #333333;   /* Tailwind blue-600 */
}

/* SVG bars inherit currentColor, so make them white */
.site-header button svg {
  stroke: #ffffff;
}


.site-header .menu-list {
  list-style: none;     /* remove bullets */
  margin: 0;
  padding: 0;
}

.site-header .menu-list li {
  margin: 0;
}

.site-header .menu-list a {
  display: block;
  padding: 0.5rem 0.75rem; /* 8 px × 12 px */
  font-size: 0.875rem;     /* Tailwind text-sm */
  font-weight: 500;
  color: #111827;          /* Tailwind gray-900 */
  text-decoration: none;
  border-radius: 0.375rem; /* rounded-md */
  transition: background-color 0.15s ease;
}

.site-header .menu-list a:hover,
.site-header .menu-list a:focus {
  background-color: #f3f4f6;     /* Tailwind gray-100 */
}
