.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  text-decoration: none;
  font-weight: 600;
  color: white;
  transition: color 0.3s;
}

.nav-menu li a:hover {
  color: var(--accent-color);
}

/* ---------------------------
.mobile-menu-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-color);
  padding: 1rem 0;
  cursor: pointer;
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-color);
}

/* Mobile menu styles */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; /* adjust based on header height */
  left: 0;
  right: 0;
  background: white;
  padding: 20px;
  z-index: 1000;
}

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

.mobile-menu-toggle {
  display: none;
  cursor: pointer;
}

.hamburger-icon {
  font-size: 1.8rem;
}

/* Hide close button unless menu is open */
.close-mobile-menu {
  display: block;
  font-size: 1.2rem;
  background: none;
  border: none;
  cursor: pointer;
  float: right;
}

/* Show hamburger only on small screens */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .main-navigation {
    display: none;
  }
}
