.site-header {
  position: sticky;
  top: 0;
  background:#384630;
  backdrop-filter: blur(6px);
  padding: 0.75rem 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  width: 100%;
  overflow-x: auto; /* failsafe scroll if nothing else */
}

.nav-container {
  max-width: 100%;
  padding: 0 1rem;
}

.site-header ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1rem;
}

.site-header li {
  flex-shrink: 0;
}

.site-header li a {
  text-decoration: none;
  color: #f0e6d2;
  font-weight: bold;
  letter-spacing: 0.5px;
  font-size: 1rem;
  white-space: nowrap; /* keeps it from splitting weirdly */
  padding: 0.5rem 0.75rem;
  display: block;
}

.site-header li a:hover {
  color: #9e5be1;
}

@media (max-width: 600px) {
  .site-header li a {
    font-size: 0.9rem;
    padding: 0.3rem 0.5rem;
  }
}