.theme-demos {
  display: none !important;
}
/* Warna Menu text navbar */
.navbar .navbar-nav .nav-item.active .nav-link {
  color: var(--second-color) !important;
  opacity: 1 !important;
}

.nav-link {
  color: #333;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--second-color);
}

/* Garis bawah untuk link aktif */
.nav-item.active .nav-link::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--second-color);
  transform: scaleX(1);
  transition: transform 0.3s ease;
}

/* Efek hover untuk link tidak aktif */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--second-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

/* Responsif */
@media (max-width: 991.98px) {
  .navbar-nav {
    gap: 0.5rem;
  }

  .nav-link {
    padding: 0.5rem 1rem;
  }
}

ul {
  padding-left: 5px !important;
}

li .nav-item.active {
  color: var(--base-color) !important;
}

.bg-welcome-text {
  position: relative;
  z-index: 1;
}
.bg-welcome-text::before {
  position: absolute;
  content: "";
  width: 90%;
  height: 90%;
  right: -15px;
  bottom: -15px;
  background-color: var(--base-color);
  z-index: -1;
  opacity: 1;
  border-radius: 15px;
}

.background-1 {
  position: relative;
  background-image: url("../../../assets/public/Aset Desain/pakai/bg/1.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
  /* overflow: hidden; */
}

.background-1::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgb(55 55 55 / 92%);
  z-index: 2;
}

.background-2 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.background-2::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 1) 10%,
      rgba(255, 255, 255, 0) 25%
    ),
    linear-gradient(
      to top,
      rgba(255, 255, 255, 1) 10%,
      rgba(255, 255, 255, 0) 25%
    ),
    url("../../../assets/public/Aset Desain/pakai/bg/2.webp");
  /* background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom; */
  z-index: -1;
  opacity: 0.09;
}

.background-3 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.background-3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/public/Aset Desain/pakai/bg/3.webp");
  /* background-attachment: fixed; */
  /* background-position: center center; */
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 0.1;
}

.background-4 {
  position: relative;
  z-index: 1;
  /* overflow: hidden; */
}

.background-4::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/public/Aset Desain/pakai/bg/6.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
  opacity: 0.09;
}

footer {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

/*CARD*/
.card-keunggulan {
  width: 100%;
  padding: 10px 10px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  cursor: pointer;
  position: relative;
}

.card-keunggulan:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  /* border-bottom: 1px solid var(--second-color); */
  background-color: var(--base-color);
  color: white;
}

.card-keunggulan h3 {
  color: var(--base-color);
}

.card-keunggulan:hover h3 {
  color: white;
}

.icon-keunggulan {
  max-width: 80px;
  min-width: 80px;
  background: white;
  border-radius: 10px;
  padding: 5px;
}

/* .img-sticky-keunggulan {
  position: sticky;
  height: 100%;
  overflow: visible;
  top: 100px;
} */

.img-sticky-keunggulan {
  position: sticky;
  top: 100px; /* Sesuaikan dengan header height */
  align-self: flex-start; /* Penting untuk flex children */
  height: fit-content;
}

.card-artikel {
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.card-artikel:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.badge-date {
  position: absolute;
  top: 49%;
  left: 10px;
  background-color: var(--base-color);
  border-radius: 10px;
  color: white;
}

.card-layanan {
  width: 100%;
  padding: 10px 10px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  cursor: pointer;
}

.card-layanan:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.card-kontak {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 15px;
}

.card-kontak:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.icon-bg {
  position: relative;
  z-index: 1;
}

.icon-bg::before {
  position: absolute;
  z-index: -1;
  background-color: green;
  width: 50px;
  height: 50px;
  border: 10px;
  border-radius: 10px;
}

.overlay-header {
  position: relative;
  z-index: 1;
}
.overlay-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4); /* Sesuaikan tingkat gelapnya */
  z-index: 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

div {
  font-size: 14px;
}

/* MOBILE / Responsive */
@media (max-width: 600px) {
.nav-item.active .nav-link::after {
display:none;
}
  div {
    font-size: 14px;
  }
  .flex-mobile {
    flex-direction: column;
  }
  .img-sticky1 {
    position: relative !important;
    top: 0px !important;
  }
  .img-sticky-keunggulan {
    position: relative !important;
    top: 0px !important;
  }
  .flex-mobile1 {
    flex-direction: column;
  }
  /* .flex-mobile-harga {
    display: flex;
  } */

  .content-slider {
    top: 50%;
  }
  .content-slider-mobile {
    display: flex;
    flex-wrap: nowrap; /* Jangan biarkan pecah ke bawah */
    align-items: center;
    gap: 16px;
  }
  .content-slider-mobile > div {
    flex: 1 1 50%;
    max-width: 50%;
  }
  .content-slider-mobile h1 {
    font-size: 20px;
  }
}

.whatsapp-shake {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: shake 2s infinite;
  transition: transform 0.3s;
}

.whatsapp-shake img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

@keyframes shake {
  0%,
  100% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(1px, -1px);
  }
  40% {
    transform: translate(-1px, 1px);
  }
  60% {
    transform: translate(1px, 1px);
  }
  80% {
    transform: translate(-1px, -1px);
  }
}

.swiper-wrapper {
  height: 100vh !important;
}

.swiper-wrapper-galeri {
  height: 100% !important;
}

.overlay-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  animation: zoomLoop 15s ease-in-out infinite;
}
@keyframes zoomLoop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Slider Content - Center Alignment */
.slider-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.slider-text {
  position: relative;
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
  text-align: center;
}

/* Text Styling */
.slider-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slider-text h6 {
  font-size: 1.2rem;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.btn-wa-slider {
  background-color: var(--base-color);
  padding: 7px 20px;
  border-radius: 10px;
  color: white;
  font-weight: 500;
}

.btn-wa-slider:hover {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}
.btn-tour-slider {
  background-color: transparent;
  padding: 7px 20px;
  border-radius: 10px;
  color: var(--second-color);
  font-weight: 500;
  border: 2px solid var(--second-color);
}

.btn-tour-slider:hover {
  background-color: var(--second-color);
  border: 2px solid var(--second-color);
  color: white;
}

/* .custom-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  border: 2px solid #007bff;
}

.custom-btn:hover {
  background: transparent;
  color: #007bff;
  transform: translateY(-2px);
} */

/* Mobile Responsive Slider */
@media only screen and (max-width: 600px) {
  .slider-text h1 {
    font-size: 2rem;
  }

  .slider-text h6 {
    font-size: 1rem;
  }

  .custom-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .slider-content {
    padding: 0 15px;
  }

  .d-flex.gap-1 {
    flex-direction: column;
    gap: 10px !important;
  }
}

/* Animation for slider text */
.slider-text {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*MOBILE HP Responsive*/
@media only screen and (max-width: 600px) {
  .swiper-wrapper {
    margin-top: 40px;
  }
}

/* Card Wisata */
.card-wisata {
  background: white;
  border-radius: 10px;
  padding: 5px;
  transition: all 0.3s ease-in-out;
  transform: translateY(0);
  overflow: hidden;
}

.card-wisata:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.img-wrapper {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

/* Overlay selalu tampil */
.img-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  pointer-events: none;
}
/* .img-wrapper::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%; 
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 20%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0.2) 90%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
} */

.card-wisata img {
  transition: transform 0.4s ease-in-out;
}

.card-wisata:hover img {
  transform: scale(1.05);
}

.text-img {
  position: absolute;
  bottom: 0;
  z-index: 1;
  padding: 5px;
  line-height: 20px;
display:d-flex;
justify-content:center;
width:100%;
}

/* Card Rental */

.card-rental {
  background: white;
  border-radius: 10px;
  padding: 5px;
  transition: all 0.3s ease-in-out;
  transform: translateY(0);
  overflow: hidden;
}
.card-rental:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.card-rental img {
  transition: transform 0.4s ease-in-out;
}

.card-rental:hover img {
  transform: scale(1.05);
}

.img-wrapper {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.judul-rental {
  position: relative;
  z-index: 1;
  display: inline-block;
}
.judul-rental::after {
  position: absolute;
  content: "";
  border: 1px solid var(--base-color);
  bottom: 6px;
  left: 0px;
  width: 50px;
  height: 1px;
  opacity: 0.5;
}

.judul-rental::before {
  position: absolute;
  content: "";
  border: 1px solid var(--base-color);
  bottom: 3px;
  left: 0px;
  width: 100px;
  height: 1px;
}

/* .judul-rental {
  border: 2px solid var(--base-color);
  width: fit-content;
  padding: 0px 15px;
  display: flex;
  justify-content: center;
  border-radius: 8px;
  line-height: 30px;
  background-color: var(--base-color);
  color: white;
} */

.mfp-arrow-right:before {
  content: "\f061";
  font-family: FontAwesome;
}

.mfp-arrow-left:before {
  content: "\f060";
  font-family: FontAwesome;
}

/* Floating action Buttton */
.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  left: 40px;
  cursor: pointer;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.float:hover {
  color: #fff;
}

.my-float {
  margin-top: 16px;
}

.bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  25%,
  50%,
  75%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-20px);
  }

  60% {
    transform: translateY(-12px);
  }
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.scroll-to-top .progress-circle {
  position: absolute;
  transform: rotate(-90deg);
}

.scroll-to-top .arrow-up {
  position: absolute;
  font-size: 20px;
  color: #3498db;
  z-index: 2;
}

.img-sticky1 {
  position: sticky;
  height: 100%;
  overflow: visible;
  top: 100px;
}

.include ul li,
.exclude ul li,
.itinerary ul li {
  list-style: disc;
}
