.nav-bar {
  position: relative;
  width: 100%;
  background-color: #6b4f3b; /* warm walnut */
  padding: 0.5rem 1rem;
  color: white;
  font-family: 'Segoe UI', sans-serif;
}

.menu-toggle {
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: inline;
}

.nav-links a,
.nav-links button {
  color: white;
  background: none;
  border: none;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  padding: 0.5rem;
  display: inline;
}

.nav-links a:hover,
.nav-links button:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #6b4f3b;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }

  .nav-links.show {
    display: flex;
  }
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left,
.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-left li,
.nav-links li {
  display: inline;
}

.nav-left a,
.nav-links a {
  color: white;
  background: none;
  border: none;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  padding: 0.5rem;
  display: inline;
}

.nav-left a:hover,
.nav-links a:hover {
  text-decoration: underline;
}
