/* ====== Desktop Menu ====== */
.custom-header-menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.custom-header-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.custom-header-menu ul li a:hover {
  color: #f5b300;
}

/* ====== Mobile Menu ====== */
@media (max-width: 991px) {
  /* Hide menu by default */
  .custom-header-menu ul {
    display: none;
    flex-direction: column;
    background: #0a0a0a;
    position: absolute;
    top: 70px; /* adjust for header height */
    left: 0;
    width: 100%;
    padding: 20px;
  }

  /* Show menu when .active is added to the parent container */
  .custom-header-menu.active ul {
    display: flex;
  }

  /* Burger icon */
  .menu-toggle {
    display: block;
    width: 30px;
    height: 25px;
    position: absolute;
    right: 25px;
    top: 25px;
    cursor: pointer;
    z-index: 999; /* ensure it’s on top */
  }

  .menu-toggle span {
    display: block;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    transition: 0.3s;
  }
}

/* ====== Hide burger on desktop ====== */
@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }
}