.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: transparent;
  color: white;
  z-index: 1000;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background-color: black;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.navbar .logo {
  font-size: 2rem;
  font-weight: bold;
  margin-left: 2rem;
  font-family: cursive;
  color: #8b5e34;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar ul li {
  display: inline;
}

.navbar ul li a {
  text-decoration: none;
  color: white;
  font-size: 1.3em;
  transition: color 0.3s;
}

.navbar ul li a:hover {
  color: #ddd;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    display: none;
    background: #77472e;
    position: absolute;
    margin-top: 0%;
    top: 100%;
    right: 0;
    left: 0;
    padding: 10px;
    text-align: center;
  }

  .navbar ul.active {
    display: flex;
  }

  .menu-toggle {
    font-size: 1.5em;
    cursor: pointer;
    display: block;
    margin-right: 3rem;
  }
}