/* =========================================================
   Buried Keep — site-menu.css
   Canonical Site Menu formerly known as hamburger menu.
   ========================================================= */

.site-menu {
  position: relative;
  width: auto;
  height: auto;
  flex: 0 0 auto;
}

.site-menu-button {
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  background: var(--bg-panel-soft);
  border: var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.site-menu-lines span {
  display: block;
  width: 22px;
  height: 3px;
  margin: 3px 0;
  background: var(--text-main);
  border-radius: 2px;
}

.site-menu-popover {
  position: absolute;
  top: 62px;
  left: 0;
  min-width: 210px;
  background: var(--bg-panel);
  border: var(--border-soft);
  border-radius: 12px;
  padding: 0.5rem 0.5rem;
  box-shadow: var(--shadow-soft);
  display: none;
  z-index: 20;
}

.site-menu-popover.open {
  display: block;
}

.site-menu-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-menu-item {
  display: block;
  width: 100%;
  padding: 0.4rem 0.6rem;
  text-decoration: none;
  color: var(--text-main);
  border-radius: 8px;
  box-sizing: border-box;
}

.site-menu-item:hover {
  background: var(--bg-panel-soft);
}
