/* Mobile menu styles */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background-color: #000;
  z-index: 30;
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.mobile-menu.active {
  right: 0;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 25;
  display: none;
}

.menu-overlay.active {
  display: block;
}

/* Accessibility focus styles */
#menuToggle:focus,
#closeMenu:focus {
  outline: 2px solid #fff;
  border-radius: 4px;
}

/* Make sure buttons are properly tabbable on mobile */
#menuToggle,
#closeMenu {
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
}
