.hide-menu-link {
  margin-top: 12px;
  font-weight: bold;
  color: tomato;
  text-decoration: none;
  border-top: 1px solid #444;
  padding-top: 10px;
}
.hide-menu {
  display: block;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #444;
  color: tomato;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  z-index: 4000;
}

.menu {
  display: none;
  flex-direction: row;
  gap: 10px;
  background: #111;
  padding: 11px;
  border-radius: 10px;
  margin-top: 0px;
  transition: all 0.3s ease;
}

/* Show when toggled */
.menu.show-menu {
  display: flex;
}

/* Toggle button style */
.menu-toggle {
  background: #5f2c82;
  color: white;
  font-size: 22px;
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: none; /* Hidden by default (for desktop) */
}

/* Only show toggle on small screens */
@media (max-width: 768px) {
  .menu-toggle {
    display: inline-block;
  }
  .menu a {
    color: white;
    text-decoration: none;
    padding: 10px;
    font-size: 18px;
    border-bottom: 1px solid #333;
  }
  
  .menu {
  display: none;
  flex-direction: column;
  gap: 10px;
  background: #111;
  padding: 16px;
  border-radius: 10px;
  margin-top: 10px;
  transition: all 0.3s ease;
}
}