.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1200;
  font-family: var(--navbar-font, 'Lato', sans-serif);
  color: rgba(255, 255, 255, 0.86);
  background: #ca981a;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.16);
}

.site-nav {
  display: flex;
  min-height: 48px;
  align-items: stretch;
  justify-content: space-between;
  padding: 0 20px;
}

.site-nav a,
.site-nav button {
  color: inherit;
  font: inherit;
  text-decoration: none;
}

.site-title {
  display: flex;
  align-items: center;
  min-width: 150px;
  padding: 0 12px;
  font-size: 18px;
}

.site-menu {
  display: flex;
  align-items: stretch;
}

.site-menu > a,
.nav-dropbtn {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-menu > a:hover,
.site-menu > a:focus-visible,
.nav-dropbtn:hover,
.nav-dropbtn:focus-visible,
.site-title:hover,
.site-title:focus-visible {
  color: #fff;
  outline: none;
  background: rgba(255, 255, 255, 0.08);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-content {
  position: absolute;
  top: calc(100% + 2px);
  right: 0;
  display: none;
  min-width: 210px;
  padding: 4px 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.nav-dropdown.open .nav-dropdown-content {
  display: block;
}

.nav-dropdown-content a {
  display: block;
  padding: 8px 22px;
  color: #1a1a1a;
  white-space: nowrap;
}

.nav-dropdown-content a:hover,
.nav-dropdown-content a:focus-visible {
  color: #000;
  background: #eee;
  outline: none;
}

.nav-toggle {
  display: none;
  width: 48px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 21px;
}

@media (max-width: 900px) {
  .site-nav {
    position: relative;
    padding: 0;
  }

  .site-title {
    padding-left: 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-menu {
    position: absolute;
    top: 48px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 48px);
    overflow: auto;
    flex-direction: column;
    padding: 6px 0 12px;
    background: #ca981a;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  }

  .site-header.menu-open .site-menu {
    display: flex;
  }

  .site-menu > a,
  .nav-dropbtn {
    width: 100%;
    min-height: 42px;
    justify-content: flex-start;
    padding: 0 20px;
    text-align: left;
  }

  .nav-dropdown-content {
    position: static;
    margin: 0 12px 6px;
    box-shadow: none;
  }
}

@media print {
  .site-header {
    display: none;
  }
}
