.bg-login-img {
  background: url('/img/logo-desa-sementara.jpeg');
  background-position: center;
  background-size: cover;
}

.hero-destinasi {
  position: relative;
  height: 400px; /* Adjust the height as needed */
  background-image: url('/img/land-1.jpg');
  background-size: cover;
  background-position: center;
}

.hero-destinasi::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust darkness */
  filter: blur(5px); /* Adjust blur */
  z-index: 1;
}

.hero-destinasi-text {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.img-cover-home {
  width: 100%;
  /* Set a fixed width */
  height: 100%;
  /* Set a fixed height to make it square */
  object-fit: cover;
  /* Crop the image to fit the container */
}