/* Navbar styling */
.navbar {
  display: flex;
  margin-inline: 2rem;
  padding: 1rem 2rem;
  height: 6rem;
  border-bottom: 1px solid;
  font-size: 1.5rem;
  justify-content: space-between;
  align-items: center;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-grow: 1;
}

.navbar__logo-img {
  height: 2.2rem;
}

.navbar__logo-text {
  font-size: 1.5rem;
  font-weight: 600;
}

.navbar__menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  display: none;
}

.navbar__menu-item a {
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.navbar__menu-item a:hover {
  color: #078f44;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-right: 20px;
  background-color: #264533;
}

.navbar__search-input {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 5px;
  outline: none;
  background-color: #264533;
  transition: border-color 0.3s;
  height: 3rem;
}

.navbar__search-input::placeholder {
  color: #96c4a8;
}

.navbar__search-input:focus {
  border-color: #007bff;
}

.navbar__icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: #333;
  transition: color 0.3s;
}

.navbar__icon-btn:hover {
  color: #007bff;
}

.navbar__menu-wrapper {
  display: none;
}

.hamburger {
  width: 5rem;
  height: 4rem;
  background-color: transparent;
  grid-column: 1fr;
  background-color: red;
  justify-self: end;
}

/* Tablet styles */
@media (min-width: 768px) and (max-width: 1023px) {
  .navbar__logo-text {
    font-size: 2rem;
    font-weight: 600;
    flex-grow: 2;
  }

  .navbar__menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    /* display: none; */
  }
  .navbar__menu-wrapper {
    display: flex;
    justify-content: space-around;
    gap: 5rem;
    align-items: center;
    flex-basis: 45rem;
  }

  .logo-menu-container {
    display: flex;
    align-items: center;
    width: 46rem;
    justify-content: space-around;
  }
  .hamburger {
    display: none;
  }
}

/* Desktop styles */
@media (min-width: 1024px) {
  .navbar__logo-text {
    font-size: 2rem;
    font-weight: 600;
    flex-grow: 2;
  }

  .navbar__menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    /* display: none; */
  }
  .navbar__menu-wrapper {
    display: flex;
    justify-content: space-around;
    gap: 5rem;
    align-items: center;
    flex-basis: 60rem;
  }

  .logo-menu-container {
    display: flex;
    align-items: center;
    width: 50rem;
    justify-content: space-around;
  }
  .hamburger {
    display: none;
  }
}
