.nav-menu {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-menu li {
  display: flex;
  align-items: center;
}

.nav-menu li a {
  padding-top: 0;
  margin-top: -2px; /* Optional tweak if needed */
  text-decoration: none;
  color: #F6F1EE; /* light beige text */
  font-weight: 600;
  position: relative;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

/* Gold underline on hover */
.nav-menu li a:hover::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: #CBB26A;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a:focus {
  color: #CBB26A; /* gold on hover */
}

/* === MOBILE NAVIGATION === */
@media (max-width: 767px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
  }
	
.mobile-menu {
  display: none;
  background: #FFFFFF;
  padding: 1rem;
  position: absolute;
  top: 140px; /* adjust based on header height */
  left: 0;
  right: 0;
  z-index: 9999;
}

.mobile-menu {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 4px solid #5e0190;
  border-radius: 6px;
}

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

  .close-mobile-menu {
	color: #5e0190; /* Deep purple */
    display: block;
    float: right;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
	
	.close-mobile-menu:hover {
  color: #CBB26A; /* Gold on hover */
}
}

/* Desktop hides mobile toggles */
@media (min-width: 768px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

.mobile-menu-toggle {
  color: #F6F1EE; /* light beige text */
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
  color: #CBB26A; /* Gold */
}


.mobile-menu .nav-menu {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu .nav-menu li a {
  text-decoration: none;
  color: #5e0190; /* Deep purple */
  font-weight: bold;
}

.mobile-menu .nav-menu li a:hover {
  color: #cbb26a; /* Gold */
}
