/* Left Menu Slideout */

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 900;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-panel {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background: #0a0a0a;
  border-right: 1px solid #222;
  transition: left 0.3s ease;
  z-index: 901;
  display: flex;
  flex-direction: column;
}

.menu-panel.active {
  left: 0;
}

.menu-header {
  padding: 24px;
  border-bottom: 1px solid #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-title {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #666;
}

.menu-close {
  background: none;
  border: 1px solid #333;
  color: #666;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-close:hover {
  border-color: #e0e0e0;
  color: #e0e0e0;
}

.menu-items {
  flex: 1;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-item {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #888;
  cursor: pointer;
  padding: 16px 0;
  border-bottom: 1px solid #1a1a1a;
  transition: color 0.15s;
}

.menu-item:hover {
  color: #e0e0e0;
}

.menu-footer {
  padding: 24px;
  border-top: 1px solid #222;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #333;
}
