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

.site-header nav ul li {
  display: inline;
}

.site-header nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.site-header nav ul li a:hover {
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  background: none;
  border: none;
  margin-left: auto;
}

@media (max-width: 768px) {
  .site-header nav ul {
    display: none;
    flex-direction: column;
    background: #BF4230;
    width: 100%;
  }
  .site-header nav ul.show {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}
