/* Ubah gaya CSS di bawah ini ke tema cyberpunk tanpa merubah susunan yang sudah ada*/
/* Gunakan latar belakang gelap dengan warna-warna neon terang seperti biru neon (#00ffff), pink neon (#ff00cc), ungu neon (#9d00ff), dan kuning terang (#faff00) */
/* Terapkan efek glow (teks bercahaya) pada elemen penting */
/* Gunakan font futuristik seperti 'Orbitron' atau 'Share Tech Mono' jika memungkinkan */
/* Buat tampilan seperti antarmuka retro-futuristik ala dunia cyberpunk */

/* Font Google Embbed Link */
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@200;300;400;500;600;700;800&family=Poppins:wght@200;300;400;500;600;700;800&display=swap");

/* Global Styling and CSS Variable */
:root {
  --primary: #fa5c2c;
  --primaryHover: #ff4a13;
  --secondary: #153361;
  --footerColor: #2c2c2c;
  --bgLight: #f1d8bb;
  --colorSubPrimary: #cf3000;
  --fontPrimary: "Poppins", sans-serif;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden !important;
}

html {
  scroll-behavior: smooth !important;
}

/* Button Back To Top and backsound button */
.wrapper-sidebtn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  width: fit-content;
  height: fit-content;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 999;
}

.backsound-btn {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  text-align: center;
  border: 2px solid var(--primary);
  cursor: pointer;
  display: block;
  box-shadow: 0 0 0 1.5px var(--primary);
  background: #fff;
}

.backsound-btn i {
  color: var(--primary);
  font-size: 1rem;
  line-height: 35px;
}

.button-backtop {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  text-align: center;
  border: 2px solid white;
  cursor: pointer;
  display: none;
  box-shadow: 0 0 0 1.5px rgb(236, 154, 0);
  background: var(--primary);
}

.button-backtop i {
  color: white;
  font-size: 1rem;
  line-height: 35px;
}

/* Loading Screen Styling */
.loading-container {
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  z-index: 999999999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
  gap: 1.5rem;
  top: 0;
  left: 0;
}

.loading-screen {
  width: 40px;
  height: 40px;
  color: var(--primary);
  position: relative;
  background: radial-gradient(10px, currentColor 94%, #0000);
}
.loading-screen:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(9px at bottom right, #0000 94%, currentColor) top
      left,
    radial-gradient(9px at bottom left, #0000 94%, currentColor) top right,
    radial-gradient(9px at top right, #0000 94%, currentColor) bottom left,
    radial-gradient(9px at top left, #0000 94%, currentColor) bottom right;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  animation: sp8 1.5s infinite cubic-bezier(0.3, 1, 0, 1);
}
@keyframes sp8 {
  33% {
    inset: -10px;
    transform: rotate(0deg);
  }
  66% {
    inset: -10px;
    transform: rotate(90deg);
  }
  100% {
    inset: 0;
    transform: rotate(90deg);
  }
}

/* Navigasi Bar */

.jogja-icon {
  width: 200px;
  height: 50px;
}

.nav-link {
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
}

.nav-item .nav-link.active {
  color: var(--primary) !important;
}

.nav-link:hover {
  color: var(--primary) !important;
}

@media (min-width: 768px) {
  .jogja-icon {
    width: auto;
    height: auto;
  }
}

/* carousel */
.carousel {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  position: relative;
}
.carousel .list .item {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0 0 0 0;
}
.carousel .list .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}
.carousel .list .item .content {
  position: absolute;
  top: 20%;
  width: 1140px;
  max-width: 80%;
  left: 30%;
  transform: translateX(-30%);
  padding-right: 30%;
  box-sizing: border-box;
  color: #fff;
  text-shadow: 0 5px 10px #0004;
}
.carousel .list .item .category {
  font-weight: bold;
  letter-spacing: 10px;
}
.carousel .list .item .title,
.carousel .list .item .topic {
  font-size: 5em;
  font-weight: bold;
  line-height: 1.1em;
}
.carousel .list .item .topic {
  color: var(--primary);
}
.carousel .list .item .buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}
.carousel .list .item .buttons a {
  padding: 0.75rem 1.3rem;
  border: 2px solid var(--primary);
  border-radius: 1rem;
  color: #fff;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: 300ms ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.carousel .list .item .buttons a:first-child {
  padding: 0.6rem 1.25rem;
}

.carousel .list .item .buttons a:first-child i {
  font-size: 1rem;
}

.carousel .list .item .buttons a:first-child {
  background-color: var(--primary);
}
.carousel .list .item .buttons a:first-child:hover {
  background-color: var(--primaryHover);
}
.carousel .list .item .buttons a:nth-child(2) {
  background-color: #fff;
  color: var(--primary);
  transition: 300ms ease-in-out;
}
.carousel .list .item .buttons a:nth-child(2):hover {
  background-color: var(--primary);
  border: 2px solid var(--primary);
  color: #fff;
}
/* thumbail */
.thumbnail {
  position: absolute;
  bottom: 30px;
  left: 55%;
  width: max-content;
  z-index: 100;
  display: flex;
  gap: 20px;
}
.thumbnail .item {
  width: 150px;
  height: 220px;
  flex-shrink: 0;
  position: relative;
}
.thumbnail .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.thumbnail .item .content {
  color: #fff;
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
}
.thumbnail .item .content .title {
  font-weight: 500;
}
.thumbnail .item .content .description {
  font-weight: 600;
}
/* arrows */
.arrows {
  position: absolute;
  top: 80%;
  right: 52%;
  z-index: 100;
  width: 300px;
  max-width: 30%;
  display: flex;
  gap: 10px;
  align-items: center;
}

@media (min-width: 768px) {
  .arrows {
    right: 40%;
  }
}

@media (min-width: 1024px) {
  .arrows {
    right: 59%;
  }
}
.arrows button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(167, 167, 167, 0.8);
  border: none;
  color: #000;
  font-family: monospace;
  font-weight: bold;
  transition: 0.5s;
}
.arrows button i {
  font-size: 1.5rem;
}
.arrows button:hover {
  background-color: #fff;
  color: #000;
}

/* animation */
.carousel .list .item:nth-child(1) {
  z-index: 1;
}

/* animation text in first item */

.carousel .list .item:nth-child(1) .content .author,
.carousel .list .item:nth-child(1) .content .title,
.carousel .list .item:nth-child(1) .content .topic,
.carousel .list .item:nth-child(1) .content .des,
.carousel .list .item:nth-child(1) .content .buttons {
  transform: translateY(50px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent 0.5s 1s linear 1 forwards;
}
@keyframes showContent {
  to {
    transform: translateY(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
.carousel .list .item:nth-child(1) .content .title {
  animation-delay: 1.2s !important;
}
.carousel .list .item:nth-child(1) .content .topic {
  animation-delay: 1.4s !important;
}
.carousel .list .item:nth-child(1) .content .des {
  animation-delay: 1.6s !important;
}
.carousel .list .item:nth-child(1) .content .buttons {
  animation-delay: 1.8s !important;
}
/* create animation when next click */
.carousel.next .list .item:nth-child(1) img {
  width: 150px;
  height: 220px;
  position: absolute;
  bottom: 50px;
  left: 50%;
  border-radius: 30px;
  animation: showImage 0.5s linear 1 forwards;
}
@keyframes showImage {
  to {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}

.carousel.next .thumbnail .item:nth-last-child(1) {
  overflow: hidden;
  animation: showThumbnail 0.5s linear 1 forwards;
}
.carousel.prev .list .item img {
  z-index: 100;
}
@keyframes showThumbnail {
  from {
    width: 0;
    opacity: 0;
  }
}
.carousel.next .thumbnail {
  animation: effectNext 0.5s linear 1 forwards;
}

@keyframes effectNext {
  from {
    transform: translateX(150px);
  }
}

/* running time */

.carousel .time {
  position: absolute;
  z-index: 1000;
  width: 0%;
  height: 3px;
  background-color: #f1683a;
  left: 0;
  top: 0;
}

.carousel.next .time,
.carousel.prev .time {
  animation: runningTime 3s linear 1 forwards;
}
@keyframes runningTime {
  from {
    width: 100%;
  }
  to {
    width: 0;
  }
}

/* prev click */

.carousel.prev .list .item:nth-child(2) {
  z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img {
  animation: outFrame 0.5s linear 1 forwards;
  position: absolute;
  bottom: 0;
  left: 0;
}
@keyframes outFrame {
  to {
    width: 150px;
    height: 220px;
    bottom: 30px;
    left: 55%;
    border-radius: 20px;
  }
}

.carousel.prev .thumbnail .item:nth-child(1) {
  overflow: hidden;
  opacity: 0;
  animation: showThumbnail 0.5s linear 1 forwards;
}
.carousel.next .arrows button,
.carousel.prev .arrows button {
  pointer-events: none;
}
.carousel.prev .list .item:nth-child(2) .content .author,
.carousel.prev .list .item:nth-child(2) .content .title,
.carousel.prev .list .item:nth-child(2) .content .topic,
.carousel.prev .list .item:nth-child(2) .content .des,
.carousel.prev .list .item:nth-child(2) .content .buttons {
  animation: contentOut 1.5s linear 1 forwards !important;
}

@keyframes contentOut {
  to {
    transform: translateY(-150px);
    filter: blur(20px);
    opacity: 0;
  }
}
@media screen and (max-width: 678px) {
  .carousel .list .item .content {
    padding-right: 0;
  }
  .carousel .list .item .content .title {
    font-size: 30px;
  }
  .carousel .list .item .content .des {
    font-size: 15px;
  }
}

/* About / Introduce Yogyakarta Page */
#about h1 {
  font-size: 1.5rem;
  font-weight: 600;
}

.intro {
  color: var(--primary);
}

#about img {
  width: 100%;
  border-radius: 10px; /* Bisa disesuaikan angkanya */
}

#about .desc-about {
  font-size: 0.8rem;
  margin-bottom: 1.2rem;
}

#about .modal-btn-history {
  border-radius: 1rem;
  background-color: var(--primary);
  outline: none;
  font-weight: 600;
  color: white;
  font-size: 0.85rem;
  padding: 0.75rem 1.3rem;
  border: 2px solid var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

#about .modal-btn-history:hover {
  background-color: var(--primaryHover);
}

.thumb-history {
  width: 100%;
  height: 250px;
  border-radius: 0.8rem;
  margin-bottom: 1.15rem;
  background: url("../konten/home/kantor.png");
  border-radius: 10px; /* Bisa disesuaikan angkanya */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.title-modal {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.desc-modal {
  font-size: 0.8rem;
}

.bot-text-head {
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  #about h1 {
    font-size: 2rem;
  }
  #about .desc-about {
    font-size: 1.2rem;
  }
  #about .modal-btn-history {
    font-size: 1rem;
    padding: 0.75rem 1.3rem;
    border: 2px solid var(--primary);
  }
  .thumb-history {
    height: 350px;
    margin-bottom: 1.25rem;
    border-radius: 10px; /* Bisa disesuaikan angkanya */
  }
  .title-modal {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  .desc-modal {
    font-size: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  #about h1 {
    font-size: 2.5rem;
  }
  .thumb-history {
    height: 400px;
    margin-bottom: 1.25rem;
    background-position-y: -80px;
  }
}

/* Why Yogyakarta Section */
#why_yogyakarta {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: fit-content;
  background-color: var(--bgLight);
  margin-top: 1rem;
}

#why_yogyakarta .decor {
  width: 80px;
  position: absolute;
}

#why_yogyakarta .decor:nth-child(1) {
  left: 0.4rem;
  bottom: -0.4rem;
}

#why_yogyakarta .decor:nth-child(2) {
  right: 0.4rem;
  bottom: -0.4rem;
  transform: rotateY(180deg);
}

#why_yogyakarta .decor:nth-child(3) {
  right: 0.4rem;
  top: -0.4rem;
  transform: rotateY(180deg) rotateX(180deg);
}

#why_yogyakarta .decor:nth-child(4) {
  left: 0.4rem;
  top: -0.4rem;
  transform: rotateY(360deg) rotateX(180deg);
}

#why_yogyakarta .box-wy {
  padding: 3rem 2rem 2rem;
}

#why_yogyakarta .box-wy .title-wy {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

#why_yogyakarta .box-wy .content-wy {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

#why_yogyakarta .box-wy .content-wy img {
  width: 100%;
  border-radius: 10px; /* Bisa disesuaikan angkanya */
}

#why_yogyakarta .box-wy .content-wy .list-wy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#why_yogyakarta .box-wy .content-wy .point-list {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

#why_yogyakarta .box-wy .content-wy .point-list .icon-box i {
  width: 50px;
  height: 50px;
  background-color: var(--colorSubPrimary);
  align-self: flex-start;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 100%;
}

#why_yogyakarta
  .box-wy
  .content-wy
  .point-list
  .text-content
  .title-point-list {
  color: var(--colorSubPrimary);
  font-size: 1rem;
  font-weight: 600;
}

#why_yogyakarta .box-wy .content-wy .point-list .text-content p {
  font-size: 0.8rem;
}

@media screen and (min-width: 768px) {
  #why_yogyakarta .decor {
    width: 130px;
  }

  #why_yogyakarta .box-wy .title-wy {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  #why_yogyakarta .box-wy .content-wy {
    padding: 0 2rem 1rem;
  }

  #why_yogyakarta .box-wy .content-wy .point-list {
    gap: 1.2rem;
  }

  #why_yogyakarta .box-wy .content-wy .point-list .icon-box i {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }

  #why_yogyakarta
    .box-wy
    .content-wy
    .point-list
    .text-content
    .title-point-list {
    font-size: 1.3rem;
  }

  #why_yogyakarta .box-wy .content-wy .point-list .text-content p {
    font-size: 1.05rem;
  }
}

@media screen and (min-width: 1024px) {
  #why_yogyakarta .decor {
    width: 150px;
  }

  #why_yogyakarta .box-wy {
    padding: 3rem;
  }

  #why_yogyakarta .box-wy .title-wy {
    font-size: 2.5rem;
  }

  #why_yogyakarta .box-wy .content-wy {
    flex-direction: row;
  }

  #why_yogyakarta .box-wy .content-wy img {
    width: 60%;
    border-radius: 10px; /* Bisa disesuaikan angkanya */
  }

  #why_yogyakarta
    .box-wy
    .content-wy
    .point-list
    .text-content
    .title-point-list {
    font-size: 1.5rem;
  }

  #why_yogyakarta .box-wy .content-wy .point-list .text-content p {
    font-size: 1.15rem;
  }
}

/* Hotels Section */
#hotels {
  background-color: var(--footerColor);
  padding: 2.5rem 2rem 2rem;
  width: 100%;
  height: fit-content;
}

#hotels .hotels-head {
  font-family: "Barlow", sans-serif;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.2rem;
  transform: translateY(0.5rem);
  text-align: center;
}

#hotels .hotels-title {
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
}

#hotels .hotels-location {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 2rem;
  text-align: center;
}

#hotels .arr {
  background-color: #c9c9c9;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 300ms ease-in-out;
}

#hotels .arr:hover {
  background-color: #eaeaea;
}

#hotels .arr i {
  font-size: 1.8rem;
}

#hotels .carousel-container {
  width: 100%;
  height: fit-content;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  overflow-x: scroll;
}

#hotels .carousel-container::-webkit-scrollbar {
  width: 0;
}

#hotels .card-carousel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 310px;
  height: fit-content;
  background-color: #fff;
  border-radius: 0.75rem;
  color: #000;
  overflow: hidden;
  cursor: pointer;
}

#hotels .card-carousel .carousel-image {
  width: 100%;
  height: 250px;
  transition: 300ms ease-in-out;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#hotels .card-carousel:hover .carousel-image {
  transform: scale(1.05);
}

#hotels .card-carousel:nth-child(1) .carousel-image {
  background: url("https://techtitans.sirv.com/wonderful-yogyakarta/homepage/image-1.png");
}

#hotels .card-carousel:nth-child(2) .carousel-image {
  background: url("https://techtitans.sirv.com/wonderful-yogyakarta/homepage/image-2.png");
}

#hotels .card-carousel:nth-child(3) .carousel-image {
  background: url("https://techtitans.sirv.com/wonderful-yogyakarta/homepage/image-3.png");
}

#hotels .card-carousel:nth-child(4) .carousel-image {
  background: url("https://techtitans.sirv.com/wonderful-yogyakarta/homepage/image-4.png");
}

#hotels .card-carousel:nth-child(5) .carousel-image {
  background: url("https://techtitans.sirv.com/wonderful-yogyakarta/homepage/image-5.png");
}

#hotels .card-carousel:nth-child(6) .carousel-image {
  background: url("https://techtitans.sirv.com/wonderful-yogyakarta/homepage/image-6.png");
}

#hotels .card-carousel .card-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
}

#hotels .card-carousel .card-body h1 {
  font-size: 1.5rem;
  font-weight: 600;
}

#hotels .card-carousel .card-body .location {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#hotels .card-carousel .card-body .location p {
  color: #5f5f5f;
  font-size: 0.8rem;
}

#hotels .card-carousel .card-body .location .ratting-card {
  padding: 0.3rem 0.5rem;
  background-color: #ffbd3928;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  color: #ffbd39;
  border-radius: 1rem;
  font-size: 0.9rem;
  transform: translateY(-0.5rem);
}

#hotels .card-carousel .card-body .price-hotels {
  color: var(--secondary);
}

#hotels .card-carousel .card-body .price-hotels .price-suffix {
  font-size: 1rem;
  color: #858585;
}

#hotels .card-carousel .card-body .tiketcom {
  font-size: 0.8rem;
  color: #5f5f5f;
}

#hotels .card-carousel .card-body .tiketcom a {
  text-decoration: none;
  color: #5f5f5f;
}

@media screen and (min-width: 768px) {
  #hotels {
    padding: 3.5rem 3rem 3rem;
  }
  #hotels .hotels-head {
    letter-spacing: 0.3rem;
    text-align: left;
  }
  #hotels .hotels-title {
    text-align: left;
  }
  #hotels .hotels-location {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: left;
  }
  #hotels .card-carousel {
    width: 380px;
  }
}

@media screen and (min-width: 1024px) {
  #hotels .hotels-title {
    font-size: 2.5rem;
  }
  #hotels .hotels-location {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}

/* Top Destination */
#top_destination {
  padding: 2.5rem 2rem 2rem;
}

#top_destination .title-destination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

#top_destination .title-destination h1 {
  font-size: 1.75rem;
  font-weight: 600;
}

#top_destination .title-destination p {
  font-size: 0.8rem;
  text-align: center;
}

#top_destination .title-destination a {
  text-decoration: none;
  color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  transform: translateY(-0.5rem);
}

.bento-grid {
  width: 340px;
  height: 280px;
  display: flex;
  gap: 0.4rem;
  margin-top: 1.2rem;
}

.col-bento-left {
  flex: 2;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.col-bento-right {
  flex: 1;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.row-bento-column {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 0.4rem;
}

.row-bento {
  width: 100%;
  height: 100%;
  position: relative;
  flex: 1;
  border-radius: 0.5rem;
  cursor: all-scroll;
  transition: 800ms ease-in-out;
  transform-style: preserve-3d;
}

.row-bento:hover {
  transform: rotateY(180deg);
}

.row-bento .backside,
.row-bento .frontside {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden !important;
  border-radius: 0.5rem;
}

.row-bento .frontside {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  filter: brightness(0.8) !important;
}

.row-bento .backside {
  background-color: #ffe53b;
  background-image: linear-gradient(147deg, #ffe53b 0%, #ff2525 74%);
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 0.65rem;
  transform: rotateY(180deg);
  text-transform: uppercase;
  text-align: center;
}

/* Image bg for destination */
#fside-1 {
  background: url("https://techtitans.sirv.com/wonderful-yogyakarta/travel/s-mlt.png");
  /* Merapi Lava Tour */
}

#fside-2 {
  background: url("https://techtitans.sirv.com/wonderful-yogyakarta/travel/s-mvm.png");
  /* Kaliurang */
}

#fside-3 {
  background: url("../konten/home/julio.jpeg");
  /* Parangtritis Beach */
}

#fside-4 {
  background: url("../konten/home/ginga.jpeg");
  /* Kalibiru */
}

#fside-5 {
  background: url("../konten/home/sahroni.jpeg");
  /* Nglinggo Tea */
}

#fside-6 {
  background: url("https://techtitans.sirv.com/wonderful-yogyakarta/travel/w-tb.png");
  /* Merapi Volcano Museum */
}

@media screen and (min-width: 768px) {
  #top_destination {
    padding: 3.5rem 3rem 3rem;
  }

  #top_destination .title-destination {
    margin-bottom: 1.5rem;
  }

  #top_destination .title-destination h1 {
    font-size: 2.5rem;
  }

  #top_destination .title-destination p {
    font-size: 1.2rem;
  }

  #top_destination .title-destination a {
    font-size: 1.25rem;
    transform: translateY(0);
  }

  .bento-grid {
    width: 650px;
    height: 450px;
    gap: 0.75rem;
  }

  .row-bento {
    border-radius: 1rem;
  }

  .col-bento-left {
    gap: 0.75rem;
  }

  .col-bento-right {
    gap: 0.75rem;
  }

  .row-bento-column {
    gap: 0.75rem;
  }

  .row-bento .frontside,
  .row-bento .backside {
    border-radius: 1rem;
  }

  .row-bento .backside {
    font-size: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  #top_destination {
    padding: 3.5rem 3rem 3rem;
  }

  #top_destination .title-destination h1 {
    font-size: 3rem;
  }

  #top_destination .title-destination p {
    font-size: 1.3rem;
  }

  .bento-grid {
    width: 1200px;
    height: 750px;
  }

  .row-bento .backside {
    font-size: 1.25rem;
  }
}

/* Culture Section Homepage and Utility Class */
#culture_overview {
  position: relative;
  width: 100%;
  height: fit-content;
  padding: 2.5rem 2rem 2rem;
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  gap: 1rem;
  margin: 1.25rem 0;
  background-color: var(--bgLight);
}

.hero-overview-culture {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 0.8rem;
  background: url("../konten/home/portwebsite.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

}.hero-overview-culture1 {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 0.8rem;
  background: url("../konten/home/portsosmed.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero-overview-culture::before {
  content: "";
  position: absolute;
  top: -0.8rem;
  left: -0.8rem;
  width: 120px;
  height: 120px;
  z-index: -1;
  border-radius: 0.5rem;
  background-color: var(--primary);
}
.hero-overview-culture1::before {
  content: "";
  position: absolute;
  top: -0.8rem;
  left: -0.8rem;
  width: 120px;
  height: 120px;
  z-index: -1;
  border-radius: 0.5rem;
  background-color: var(--primary);
}
.hero-overview-culture::after {
  content: "";
  position: absolute;
  bottom: -0.8rem;
  right: -0.8rem;
  width: 120px;
  height: 120px;
  z-index: -1;
  border-radius: 0.5rem;
  background-color: var(--primary);
}
.hero-overview-culture1::after {
  content: "";
  position: absolute;
  bottom: -0.8rem;
  right: -0.8rem;
  width: 120px;
  height: 120px;
  z-index: -1;
  border-radius: 0.5rem;
  background-color: var(--primary);
}


.content-custom-overview {
  display: flex;
  flex-direction: column;
}

.content-custom-overview h1 {
  font-size: 1.5rem;
  margin-top: 1rem;
  font-weight: 600;
}

.content-custom-overview p {
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.content-custom-overview .btn-custom-overview {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  background-color: var(--primary);
  color: #fff;
  padding: 0.75rem 1.3rem;
  border: 2px solid var(--primary);
  border-radius: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  align-self: flex-start;
  transition: 300ms ease-in-out;
}

.content-custom-overview .btn-custom-overview:hover {
  background-color: var(--primaryHover);
}

@media screen and (min-width: 768px) {
  #culture_overview {
    padding: 3.5rem 3rem 3rem;
    margin: 2rem 0;
    gap: 1.5rem;
  }

  .hero-overview-culture {
    width: 100%;
    height: 400px;
  }
  .hero-overview-culture1 {
    width: 100%;
    height: 400px;
  }

  .content-custom-overview h1 {
    font-size: 2.5rem;
    margin-top: 2rem;
  }

  .content-custom-overview p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .content-custom-overview .btn-custom-overview {
    padding: 0.75rem 1.3rem;
    border: 2px solid var(--primary);
    font-size: 1rem;
  }

  .hero-overview-culture::before {
    width: 150px;
    height: 150px;
    top: -1.25rem;
    left: -1.25rem;
  }
  .hero-overview-culture::after {
    width: 150px;
    height: 150px;
    bottom: -1.25rem;
    right: -1.25rem;
  }
  .hero-overview-culture1::before {
    width: 150px;
    height: 150px;
    top: -1.25rem;
    left: -1.25rem;
  }
  .hero-overview-culture1::after {
    width: 150px;
    height: 150px;
    bottom: -1.25rem;
    right: -1.25rem;
  }
}

@media screen and (min-width: 1024px) {
  #culture_overview {
    margin: 3.5rem 0;
    flex-direction: row;
    justify-content: space-between;
  }

  .hero-overview-culture {
    width: 900px;
    height: 650px;
  }
  .hero-overview-culture1 {
    width: 900px;
    height: 650px;
  }

  .content-custom-overview {
    width: 90%;
  }

  .content-custom-overview h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    margin-top: 0;
  }

  .content-custom-overview p {
    margin-bottom: 1.7rem;
  }

  .content-custom-overview .btn-custom-overview {
    padding: 0.75rem 1.3rem;
    border: 2px solid var(--primary);
    font-size: 1.1rem;
  }
}

/* Culinary Section Homepage */
#culinary_overview {
  position: relative;
  width: 100%;
  height: fit-content;
  padding: 2.5rem 2rem 2rem;
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  gap: 1rem;
  margin: 1.25rem 0;
}

.hero-overview-culinary {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 6rem 0.5rem 6rem 0.5rem;
  background: url("../konten/home/portediting.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.hero-overview-culinary1 {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 6rem 0.5rem 6rem 0.5rem;
  background: url("../konten/home/portdata.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.hero-overview-culinary::before {
  content: "";
  position: absolute;
  top: -0.8rem;
  right: -0.8rem;
  width: 120px;
  height: 120px;
  z-index: -1;
  border-radius: 1rem;
  background-color: var(--primary);
}

.hero-overview-culinary::after {
  content: "";
  position: absolute;
  bottom: -0.8rem;
  left: -0.8rem;
  width: 120px;
  height: 120px;
  z-index: -1;
  border-radius: 1rem;
  background-color: var(--primary);
}
.hero-overview-culinary1::before {
  content: "";
  position: absolute;
  top: -0.8rem;
  right: -0.8rem;
  width: 120px;
  height: 120px;
  z-index: -1;
  border-radius: 1rem;
  background-color: var(--primary);
}

.hero-overview-culinary1::after {
  content: "";
  position: absolute;
  bottom: -0.8rem;
  left: -0.8rem;
  width: 120px;
  height: 120px;
  z-index: -1;
  border-radius: 1rem;
  background-color: var(--primary);
}
@media screen and (min-width: 768px) {
  #culinary_overview {
    padding: 3.5rem 3rem 3rem;
    margin: 2rem 0;
    gap: 1.5rem;
  }

  .hero-overview-culinary {
    width: 100%;
    height: 400px;
  }
  .hero-overview-culinary1 {
    width: 100%;
    height: 400px;
  }
}


@media screen and (min-width: 1024px) {
  #culinary_overview {
    margin: 3.5rem 0;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 3.5rem;
  }

  .hero-overview-culinary {
    width: 900px;
    height: 550px;
  }
  .hero-overview-culinary1 {
    width: 900px;
    height: 550px;
  }
}

/* Specialty Snacks Section */
#ss {
  margin: 1.5rem 0;
  width: 100%;
  height: fit-content;
}

#ss .title-ss {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.5rem 1rem;
  margin-bottom: 0.5rem;
}

#ss .title-ss h1 {
  font-size: 1.75rem;
  font-weight: 600;
}

#ss .title-ss p {
  font-size: 0.8rem;
  text-align: center;
}

#ss .carousel {
  width: 100%;
  height: 250px;
}

#ss .img-carousel-ss {
  width: 100%;
  height: 250px;
  filter: brightness(0.6);
}

#ss .carousel-caption h5 {
  font-size: 1rem;
}

#ss .carousel-caption p {
  font-size: 0.65rem;
}

#ss .carousel-indicators button.active {
  background-color: var(--primary);
}

@media screen and (min-width: 768px) {
  #ss {
    margin: 2rem 0;
  }

  #ss .title-ss {
    margin-bottom: 1.5rem;
    padding: 0 4rem;
  }

  #ss .title-ss h1 {
    font-size: 2.5rem;
  }

  #ss .title-ss p {
    font-size: 1.2rem;
  }

  #ss .carousel {
    height: 400px;
  }

  #ss .img-carousel-ss {
    height: 400px;
  }

  #ss .carousel-caption h5 {
    font-size: 1.8rem;
  }

  #ss .carousel-caption p {
    font-size: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  #ss {
    margin: 3.5rem 0;
  }

  #ss .title-ss h1 {
    font-size: 3rem;
  }

  #ss .title-ss p {
    font-size: 1.3rem;
  }

  #ss .carousel {
    height: 700px;
  }

  #ss .img-carousel-ss {
    height: 700px;
  }

  #ss .carousel-caption h5 {
    font-size: 2.5rem;
  }

  #ss .carousel-caption p {
    font-size: 1.3rem;
  }
}

/* Testimoni */
#testimoni {
  padding: 2.5rem 2rem 2rem;
}

#testimoni .title-testimoni {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
}

#testimoni .title-testimoni h1 {
  font-size: 1.75rem;
  font-weight: 600;
}

#testimoni .title-testimoni p {
  font-size: 0.85rem;
  text-align: center;
}

#testimoni .testimoni-container {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem;
}

#testimoni .testimoni-container .testimoni-card {
  position: relative;
  width: 300px;
  height: fit-content;
  background-color: #fff;
  margin-top: 1rem;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.5);
  cursor: default;
}

#testimoni .testimoni-container .testimoni-card::before {
  content: "";
  position: absolute;
  top: -1rem;
  right: -0.95rem;
  width: 330px;
  height: 190px;
  background-color: var(--primary);
  border-radius: 1rem;
  z-index: -10;
}

#testimoni .testimoni-container .testimoni-card .photo-testimoni {
  display: flex;
  align-items: center;
  padding-bottom: 1.5rem;
  margin-bottom: 1.25rem;
  gap: 0.9rem;
  border-bottom: 1px solid #dbdbdb;
}

#testimoni .testimoni-container .testimoni-card .photo-testimoni img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

#testimoni .testimoni-container .testimoni-card .photo-testimoni .photo-title {
  font-weight: 600;
  font-size: 1.25rem;
}

#testimoni .testimoni-container .testimoni-card .photo-testimoni .country {
  color: #818181;
}

#testimoni .testimoni-container .testimoni-card .ratting-star {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

#testimoni .testimoni-container .testimoni-card .text-testimoni {
  font-size: 0.85rem;
}

@media screen and (min-width: 768px) {
  #testimoni {
    padding: 3.5rem 3rem 3rem;
  }

  #testimoni .title-testimoni {
    margin-bottom: 1.5rem;
  }

  #testimoni .title-testimoni h1 {
    font-size: 2.5rem;
  }

  #testimoni .title-testimoni p {
    font-size: 1rem;
  }

  #testimoni .testimoni-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  #testimoni .title-testimoni h1 {
    font-size: 3rem;
  }

  #testimoni .title-testimoni p {
    font-size: 1.15rem;
  }

  #testimoni .testimoni-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 7rem;
  }
}

/* FAQ Section */
#faq {
  padding: 2.5rem 2rem 2rem;
  display: flex;
  justify-content: center;
  flex-direction: column-reverse;
}

#faq .faq-content .faq-title {
  font-size: 1.5rem;
  font-weight: 600;
}

#faq .faq-content .faq-desc {
  font-size: 0.9rem;
}

#faq .faq-content .faq-title span {
  color: var(--primary);
}

#faq .accordion {
  margin-top: 1rem;
}

#faq .accordion-button {
  font-size: 0.9rem;
}

#faq .accordion-body {
  font-size: 0.9rem;
}

#faq .faq-hero {
  width: 100%;
}

@media screen and (min-width: 768px) {
  #faq {
    padding: 3.5rem 3rem 3rem;
  }

  #faq .faq-content .faq-title {
    font-size: 2.5rem;
  }

  #faq .faq-content .faq-desc {
    font-size: 1.25rem;
  }

  #faq .accordion {
    margin-top: 1.5rem;
  }

  #faq .accordion-button {
    font-size: 1.1rem;
  }

  #faq .accordion-body {
    font-size: 1.1rem;
  }

  #faq .faq-hero {
    width: 80%;
    height: 80%;
  }
}

@media screen and (min-width: 1024px) {
  #faq {
    flex-direction: row;
    justify-content: space-evenly;
  }

  #faq .accordion-item {
    width: 500px;
  }

  #faq .accordion {
    margin-top: 2rem;
  }

  #faq .faq-hero {
    width: 40%;
    height: 40%;
  }
}

/* Footer Styling */
.footer-d {
  background-color: var(--footerColor) !important;
  padding: 0 3rem;
}

.footer-thumb {
  list-style-type: none;
  gap: 6rem;
  margin-top: 1rem;
}

.foot-nav-list {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.copyright-d {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}

.social-media a {
  color: #fff;
}

.social-media a i {
  font-size: 1.25rem;
  color: #fff;
}

@media screen and (min-width: 1024px) {
  .footer-d {
    padding: 0 5rem;
  }
  .footer-thumb {
    list-style-type: none;
    gap: 10rem;
    margin-top: 1rem;
  }
  .social-media a i {
    font-size: 1.5rem;
  }
}

/* Footer mobile */
.footer-m {
  background-color: var(--footerColor);
}

.copyright-m {
  color: #fff;
  font-size: 0.75rem;
}

.list-nav-m a {
  text-decoration: none;
  color: #fff;
  font-size: 0.8rem;
}

.social-media-m a {
  color: #fff;
  font-size: 1.2rem;
}

/* travels, culinary, culture */
.btn-explore {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--primary);
  text-decoration: none;
  color: white;
  text-align: center;
  font-weight: 600;
  border: 2px solid var(--primary);
  border-radius: 1rem;
}

.btn-explore i {
  margin-right: 0.5rem;
}

.btn-explore:hover {
  background-color: var(--primaryHover);
}

.btn-card {
  outline: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1.3rem;
  border: 2px solid var(--primary);
  text-align: center;
  font-weight: 600;
  border-radius: 1rem;
  font-size: 0.85rem;
  transition: 300ms ease-in-out;
  gap: 0.75rem;
}
