.hidden {
  display: none;
}
.block {
  display: block;
}

/* Default navbar background */
nav {
  background-color: rgba(255, 255, 255, 1);
  transition: background-color 0.3s ease;
}

/* Transparan saat di home section */

body {
  font-family: "Montserrat", sans-serif;
}
.font-poppins {
  font-family: "Poppins", sans-serif;
}

/* Custom styles for the scroll-to-top button */
.scroll-to-top {
  position: fixed;
  bottom: 16px;
  left: 16px;
  background-color: #1ca16e;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.scroll-to-top:hover {
  background-color: #168a58;
}
/* Custom styles for the WhatsApp button */
.whatsapp-button {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background-color: #25d366;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-size: 24px;
}
.whatsapp-button:hover {
  background-color: #20b85b;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.bayangan-custom {
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.2));
  transition: transform 0.5s ease, filter 0.5s ease;
  -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.2));
}

.bayangan-custom:hover {
  filter: none;
}

.hover\:scale-103 {
  transition: transform 0.5s ease; /* Tambahkan transisi di sini */
}

.hover\:scale-103:hover {
  transform: scale(1.03);
}
