
/* Mobile Menu Styles */
.mobile-menu-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}

.mobile-menu-container.active {
  transform: translateY(0);
}

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

.mobile-menu-close {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6B7280;
}

.mobile-menu-content {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.mobile-menu-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid #F3F4F6;
  font-size: 1.1rem;
}

.mobile-menu-item a {
  color: #374151;
  text-decoration: none;
  display: block;
  width: 100%;
}

.mobile-menu-item a.active {
  color: var(--color-primary);
  font-weight: 500;
}

/* New styles for mobile menu button */
.mobile-menu-toggle {
  background: linear-gradient(135deg, #9b87f5 0%, #7E69AB 100%);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #8a76e4 0%, #6d589a 100%);
  transform: translateY(-2px);
}

.mobile-menu-toggle i {
  font-size: 1.25rem;
}

/* Hide desktop menu on mobile */
@media (max-width: 767px) {
  .desktop-menu {
    display: none;
  }
}

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}

