@media (min-width: 1000px) {
  .menu-toggle-wrapper {
    display: none !important;
  }
}
/* Menu Styles - Restored from working frontend version */
#main-menu-container, nav.main-menu-container, nav {
  background: #222;
  border-radius: 0 0 8px 8px;
  margin-bottom: 0;
  padding-bottom: 0.2em;
}
nav ul {
  list-style: none;
  padding: 0.6em 1.4em;
  font-size: 1.08em;
  letter-spacing: 0.03em;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  color: #fff;
  background: transparent;
}
nav a {
  box-shadow: 0 2px 8px rgba(16,24,43,0.10);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s, background 0.2s;
  padding: 0.3em 1em;
  border-radius: 4px;
}
nav a:hover {
  color: #1a233a;
  background: #f9b233;
}
.menu-toggle {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: #f9b233;
  color: #222;
  border: none;
  border-radius: 4px;
  padding: 0.5em 1.2em;
  font-size: 1.2em;
  cursor: pointer;
  z-index: 3002;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
@media (max-width: 1000px) {
  nav ul {
    flex-direction: column;
    gap: 0;
    background: #222;
    width: 100%;
    min-width: 0;
    display: none;
    z-index: 3003;
    max-height: 70vh;
    overflow-y: auto;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    border-radius: 0 0 8px 8px;
    visibility: visible;
    opacity: 1;
  }
  nav.active ul {
    display: flex;
  }
  nav ul li a {
    display: block;
    padding: 1em 1.5em;
    color: #fff;
    text-align: left;
    border-bottom: 1px solid #333;
    font-size: 1.1em;
    font-weight: bold;
    background: #222;
  }
  nav ul li:last-child a {
    border-bottom: none;
  }
}
