/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1c3320;
  padding: 0.5rem 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
}

.brand__icon {
  fill: none;
  stroke: #8fcb8c;
  stroke-width: 2;
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
}

/* Nav menu */
.nav {
  display: flex;
  align-items: center;
}

.menu {
  position: relative;
}

.menu summary {
  cursor: pointer;
  color: #8fcb8c;
  font-size: 1rem;
}

.menu__list {
  position: absolute;
  right: 0;
  top: 2rem;
  list-style: none;
  background: #1c3320;
  border: 1px solid #2a4f2a;
  margin: 0;
  padding: 0.5rem;
  display: none;
}

.menu[open] .menu__list {
  display: block;
}

.menu__list li {
  margin: 0.3rem 0;
}

.menu__list a {
  color: #8fcb8c;
  text-decoration: none;
}

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