/* Navigation base */
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #212529;
  position: relative;
  z-index: 1000;
}

/* Menu (desktop) */
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

/* Hide burger by default */
button.menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
}

/* Mobile styles */
@media (max-width: 1100px) {
  .nav-links {
    display: none; /* hidden by default */
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #212529;
    width: 220px;
    padding: 15px;
    border-radius: 8px;
  }

  .nav-links.show {
    display: flex; /* shown when toggled */
  }

  button.menu {
    display: block; /* burger visible */
  }

  .contact-us-btn {
    display: none; /* hide big CTA button on small screens */
  }
}
