/* navbar.css */
.navbar-header {
  background-color: #2e7d32;
  color: white;
  font-family: Arial, sans-serif;
}

.nav-top-bar {
  background-color: #1b5e20;
  padding: 0.5rem 1rem;
  text-align: right;
}

.nav-whatsapp {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.hamburger-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
  display: block;
}

.nav-menu {
  list-style: none;
  display: none;
  flex-direction: column;
  padding: 1rem;
  margin: 0;
}

.nav-menu li {
  padding: 0.5rem 0;
  text-align: center;
}

.nav-menu li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.nav-menu.show {
  display: flex;
}

/* Desktop view */
@media (min-width: 768px) {
  .hamburger-btn {
    display: none;
  }

  .nav-menu {
    display: flex !important;
    flex-direction: row;
    justify-content: flex-end;
    gap: 1.5rem;
    padding-right: 2rem;
  }

  .nav-menu li {
    padding: 0;
  }
}
