/* General styles */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #29569f;
  color: #fff;
  position: relative;
  z-index: 1200;
}

.logo {
  display: flex;
  align-items: center;
}

.navbarPhone {
  position: absolute;
}

.menuIcon {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.navbar {
  display: flex;
  gap: 1rem;
}

.menu {
  color: rgb(230, 225, 225);
  text-decoration: none;
}

.menu:hover {
  color: white;
}

.logoBanyuasin {
  width: 300px;
}

.modalBackdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);

  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1040; /* Di atas z-index modal bootstrap */
}

/* Responsive styles */
@media (max-width: 600px) {
  .menuIcon {
    display: block;
  }

  .navbar {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 0;
    background-color: rgba(
      41,
      86,
      159,
      0.8
    ); /* Warna latar belakang dengan opasitas 80% */
    width: 100%;
    text-align: right;
    padding: 1rem 0;
  }

  .logoBanyuasin {
    width: 200px;
    object-fit: contain;
  }

  .navbar.open {
    display: flex;
  }

  .menu {
    padding: 1rem;
  }
}
