.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  margin: 0px;
  height: max-content;
  background-color: #d9e3f1;
  color: #16266c;
  display: flex;
  flex-direction: column;
  transition: background-color 0.3s ease;
}

.scrolled {
  box-shadow: 0 0 8px rgba(12, 12, 12, 0.5);
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 2rem;
  padding-bottom: 0rem;
}

.bottom {
  color: #d9e3f1;
  background-color: #16266c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 2rem;
  height: max-content;
}

.bottom span {
  margin-right: 100px;
}

.navbarImg {
  height: 60px;
  width: auto;
}

.address{
  cursor: pointer;
}

.address:hover{
  text-decoration: underline;
}

.navItemsContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.navItem {
  margin: 0px;
  align-items: center;
  list-style-type: none;
  display: flex;
  gap: 15px;
  cursor: pointer;
}

.navList a {
  text-decoration: none;
  color: inherit;
}

.navList {
  font-size: 18px;
  color: #16266c;
  font-weight: 500;
  padding: 5px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.navList:hover {
  text-decoration: underline;
  transform: translateY(-4px);
}

.buttonNav button{
  background-color: #16266c;
  color: white;
  padding: 2px;
  padding-left: 8px;
  padding-right: 8px;
  border-radius: 6px;
  border: none;
  outline: none;
}

.buttonNav button:hover{
  transform: scale(1.1);
  transition: transform 0.2s ease-in-out;
}

.hamburgerIcon {
  display: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .navItem {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: rgba(217, 227, 241, 0.5);
    width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .hamburgerIcon {
    display: block;
  }

  .showDropdown {
    display: flex;
  }

  .navItem li {
    text-align: center;
    padding: 10px;
  }
}
