@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

:root {
 --primary-color: #bca06b;
 --primary-color-dark: #a59370;
 --text-dark: #bca06b;
 --text-light: #a3a3a3;
 --extra-light: #f3f4f6;
 --white: #ffffff;
 --max-width: 1200px;
}

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__header {
  margin-bottom: 5px;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
}

.section__description {
  max-width: 600px;
  margin-inline: auto;
  color: var(--text-light);
  text-align: center;
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5rem;
  transition: 0.3s;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

/* Hover Effect */
.btn:hover {
  background-color: var(--primary-color-dark);
}



/* Responsive for Mobile */
@media (max-width: 768px) {
  .btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }
}


/* Font and Logo Styling */
.logo {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 24px;
  text-decoration: none;
  color: #bca06b; /* Gold by default */
}

/* Change color on mobile */
@media (max-width: 768px) {
  .logo {
    color: #bca06b; /* White on smaller screens */
  }
}

/* Example navbar background to show white text better on mobile */
@media (max-width: 768px) {
  nav {
    background-color: #000; /* optional: dark background on mobile */
  }
}






/* Fullscreen iMessage Glass Chatbot - Mobile Friendly */
@media (max-width: 576px) {

  /* Box Chatbot Persegi Panjang di Pojok Kanan */
  #chatbotBox {
    position: fixed !important;
    right: 1rem;           /* jarak kanan */
    bottom: 1rem;          /* jarak bawah */
    width: 90% !important; /* biar ga full */
    max-width: 22rem;      /* batas lebar */
    height: 70vh !important; /* tinggi 70% layar */
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex !important;
    flex-direction: column !important;
    z-index: 2000 !important;
    border-radius: 1rem;   /* sudut melengkung */
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  }

  /* Header */
  #chatbotBox .card-header {
    position: relative;
    background: rgba(211,182,129,0.9);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem 1rem;
    flex-shrink: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: none;
  }

  /* Close Button pojok kanan */
  #chatbotBox .card-header button {
    position: absolute;
    top: 50%;
    right: 0.8rem;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    padding: 0;
    font-size: 0.9rem;
    line-height: 1;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Chat Area */
  #chatbotBody {
    flex: 1;
    overflow-y: auto;
    padding: 0.8rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  /* Bubble Bot */
  #chatbotBody .alert:nth-child(odd) {
    align-self: flex-start;
    background: rgba(201,167,119,0.9);
    color: #fff;
    border-radius: 1rem 1rem 1rem 0.4rem;
    max-width: 75%;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    backdrop-filter: blur(8px);
  }

  /* Bubble User */
  #chatbotBody .alert:nth-child(even) {
    align-self: flex-end;
    background: rgba(240,173,78,0.9);
    color: #fff;
    border-radius: 1rem 1rem 0.4rem 1rem;
    max-width: 75%;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    backdrop-filter: blur(8px);
  }

  /* Quick Reply - Scroll Horizontal */
  .quick-replies {
    flex-shrink: 0;
    display: flex;
    overflow-x: auto;
    gap: 0.5rem;
    padding: 0.6rem 0.8rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.2);
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    box-sizing: border-box;
  }
  .quick-replies::-webkit-scrollbar {
    display: none;
  }
  .quick-replies .btn {
    flex: 0 0 auto;
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 1rem;
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    color: #fff;
    white-space: nowrap;
  }

  /* Input Bar */
  #chatbotBox .input-group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.25);
  }

  #chatbotBox .input-group input {
    flex: 1;
    border: none;
    background: rgba(255,255,255,0.7);
    border-radius: 1.5rem;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    color: #0d6efd;
  }

  #chatbotBox .input-group button {
    width: 40px;
    height: 40px;
    margin-left: 0.6rem;
    border-radius: 50%;
    background: rgba(240,173,78,0.9);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  }

  /* Sembunyikan floating button kalau chatbot aktif */
  #chatbotBox.show ~ .float-btn {
    display: none !important;
  }
}










/* .quick-replies */
.quick-replies {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch; /* iOS momentum scroll */
  scroll-behavior: smooth; /* Android halus */
  padding: 0.6rem 1rem;
  scrollbar-width: none; /* Firefox hide scrollbar */
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.2);
}

.quick-replies::-webkit-scrollbar {
  display: none; /* Chrome & Safari */
}

.quick-replies .btn {
  flex: 0 0 auto; /* jangan menyusut */
  border-radius: 1rem;
  font-size: 0.8rem;
  padding: 0.6rem 0.9rem;
  white-space: nowrap; /* biar teks tidak turun */
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  color: #fff;
}




img {
  display: flex;
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 24px;
  text-decoration: none;
  color: #bca06b; /* Gold by default */
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
  padding-top: 65px; /* atur sesuai tinggi navbar */
}

body {
  font-family: "DM Sans", sans-serif;
}

/* ========================================
   TOP NAVBAR (Glassmorphism Style)
======================================== */
.navbar-atas {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 1200px;
  padding: 0.6rem 1.2rem;
  background: #bca06b8a;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2rem;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
  font-family:'Open Sans', 'Helvetica Neue', sans-serif;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  height: 40px;
  overflow: hidden;
}

.logo-main {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow:
    0 0 2px #ffffff,
    0 0 4px #ffffff,
    0 0 6px #bca06b; /* Tambahan efek warna khas Deatextile */
}

.logo-sub {
  font-weight: 400;
  font-size: 0.7rem;
  opacity: 0.6;
  margin-top: -2px;
  color: #ffffff;
  text-shadow:
    0 0 4px #fff,
    0 0 8px #fff,
    0 0 12px #fff;
}

.logo-tablet-img {
  display: none;
  height: auto;
  max-height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  vertical-align: middle;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav__menu__btn {
  font-size: 1.8rem;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  position: relative;
  z-index: 1101;
}

.nav__menu__btn i {
  font-size: 2rem;
}

.nav__links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0.6rem;
  overflow-x: auto;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links li a {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.1rem 0.1rem;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  text-shadow: 0 0 6px #fff, 0 0 12px #fff, 0 0 18px #fff;
  transition: color 0.3s ease, background 0.3s ease;
}

.nav__links li a:hover {
  color: #ffd000;
}

.nav__btns {
  margin-left: auto;
}

.btn {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  background-color: #bca06b;
  border: none;
  border-radius: 0.5rem;
  text-decoration: none;
  box-shadow: 0 0 6px rgba(188, 160, 107, 0.6);
  transition: all 0.3s ease;
  line-height: 1.2;
  white-space: nowrap;
  text-shadow: 0 0 6px #fff, 0 0 12px #fff, 0 0 18px #fff;
}

.btn:hover {
  background-color: #a88f55;
  transform: scale(1.03);
  box-shadow: 0 0 10px rgba(188, 160, 107, 0.8);
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(188, 160, 107, 0.3);
}

@media (min-width: 768px) and (max-width: 991px) {
  .logo-main,
  .logo-sub {
    display: none !important;
  }

  .logo-tablet-img {
    display: inline-block !important;
  }

  .nav__links a {
    font-size: 0.85rem;
    padding: 0.3rem 0.6rem;
  }
}

@media (max-width: 767px), (min-width: 992px) {
  .logo-main,
  .logo-sub {
    display: inline !important;
  }

  .logo-tablet-img {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .nav__menu__btn {
    display: block;
  }

  .nav__links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    padding-top: 2rem;
    z-index: 1099;
    border-radius: 0;
  }

  .nav__links.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    border-radius: 2rem 2rem 0 0;
  }

  .nav__links li {
    margin-bottom: 1rem;
  }

  .nav__links li a {
    font-size: 1.2rem;
    color: #bca06b;
    text-decoration: none;
    text-shadow: 0 0 6px #bca06b, 0 0 12px #bca06b, 0 0 18px #bca06b;
  }

  .nav__links li a:hover {
    color: #222;
  }

  .nav__btns {
    display: none;
  }

  .logo-main {
    margin-left: 0;
    margin-right: auto;
  }
}



/* ========================================
   BOTTOM NAVBAR (Dock/MacOS Style)
======================================== */
.bottom-navbar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1050;
  height: 80px;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.bottom-navbar.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(30px);
}

.bottom-navbar a {
  position: relative;
  width: 55px;
  height: 55px;
  background: #ffffff;
  color: #bca06b;
  font-size: 1.7rem;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, background 0.25s ease;
}

.bottom-navbar a:hover {
  transform: scale(1.25);
  background: #f0f0f0;
}

.bottom-navbar .badge {
  position: absolute;
  top: 5px;
  right: 5px;
  transform: translate(50%, -50%);
  background: red;
  color: white;
  font-size: 0.7rem;
  padding: 3px 7px;
  border-radius: 9999px;
  font-weight: bold;
}



/* ========================================
   HEADER STYLES - Responsive & Clean
======================================== */

header {
  margin-top: 0;
  padding-inline: 1rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

header::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: calc(100% - 2rem);
  background-image: url("img/Bg soon.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 3rem;
  z-index: -1;
}

.header__container {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.header__container{
grid-template-columns:
minmax(0 ,1fr)
repeat(5, minmax(0, calc(var(--max-width)/ 5)))
minmax(0, 1fr) ;
}

.header__content {
  grid-column: 2 / 4;
  padding-block: clamp(6rem, 8vw, 10rem); /* responsif padding atas bawah */
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.header__content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7),
               0 0 20px rgba(255, 255, 255, 0.6),
               0 0 40px rgba(255, 255, 255, 0.5);
}

.header__content p {
  font-size: clamp(2.1rem, 2vw, 1.25rem);
  line-height: 1.6;
  max-width: 600px;
  color: #555;
}

.header__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .header__content {
    grid-column: 2 / 7;
    text-align: center;
    align-items: center;
  }

  .header__btns {
    justify-content: center;
  }
}



.header__image{
  grid-column: 4.5/8;
  position: relative;
  isolation: isolate;
  height: 100%;
  width: auto;
}

/*Floating Effect*/
.header__image img {
  position: absolute;
  top: 2rem;
  left: 0;
  height: 100%;
  width: auto;

  animation: slideInRight 1s ease-out forwards, float 5s ease-in-out infinite;
  animation-delay: 0s, 1s; /* delay untuk animasi float agar mulai setelah slideInRight selesai */
  opacity: 0; /* untuk animasi fade-in */
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}




.destination__container :is(.section__header, .section__description) {
  text-align: left;
  margin-inline-start: 0;
}

/* Grid Layout */
.destination__grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem 1rem;
}

/* Card Image */
.destination__card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.destination__card:hover img {
  transform: scale(1.03);
}

/* Card Container */
.destination__card {
  border-radius: 1.5rem;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.destination__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Card Details */
.destination__card__details {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border-top: 1px solid #e0e0e0;
}

/* Judul dan Deskripsi */
.destination__card__details h4 {
  margin-bottom: 4px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.destination__card__details p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

/* Ratings */
.destination__ratings {
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 1rem;
  transition: background-color 0.3s ease;
}

.destination__card:hover .destination__ratings {
  background-color: var(--primary-color-dark);
}




.journey__grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* Card container */
.journey__card {
  position: relative;
  isolation: isolate;
  padding-top: 4rem;
  overflow: hidden;
  border-radius: 1rem;
  background: #dac39775;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  cursor: pointer;
}
.journey__card:hover,
.journey__card.active {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Background content */
.journey__card__bg {
  padding: 2rem;
  background: var(--extra-light, #2a2a2a);
  border-bottom-left-radius: 1rem;
  border-top-right-radius: 1rem;
  color: #fff;
  text-align: center;
}

.journey__card__bg span {
  display: inline-block;
  margin-bottom: 1.2rem;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  color: var(--primary-color, #bca06b);
}

.journey__card__bg h4 {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 600;
  color: #bca06b;
  margin-bottom: 0.6rem;
}

.journey__card__bg p {
  color: #f0f0f0;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  margin-top: 0.8rem;
  line-height: 1.6;
}

/* Hidden content (slide up on hover/tap) */
.journey__card__content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2rem;
  background: var(--primary-color, #bca06b);
  border-radius: 1rem;
  transition: top 0.45s ease, opacity 0.45s ease;
  opacity: 0;
  text-align: center;
  color: var(--white, #fff);
}

.journey__card:hover .journey__card__content,
.journey__card.active .journey__card__content {
  top: 0;
  opacity: 1;
}

.journey__card__content span {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 8px 10px;
  font-size: 1rem;
  border: 2px solid var(--white, #fff);
  color: var(--white, #fff);
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}

.journey__card__content h4 {
  margin-bottom: 0.8rem;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 600;
  color: var(--white, #fff);
}

.journey__card__content p {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.6;
  color: #fdfdfd;
}

/* Responsif tablet */
@media (max-width: 768px) {
  .journey__card__bg,
  .journey__card__content {
    padding: 1.5rem;
  }
  .journey__card__bg h4,
  .journey__card__content h4 {
    font-size: 1.05rem;
  }
  .journey__card__bg span {
    font-size: 1.5rem;
  }
  .journey__card__bg p,
  .journey__card__content p {
    font-size: 0.9rem;
  }
}

/* Responsif mobile kecil */
@media (max-width: 480px) {
  .journey__card__bg,
  .journey__card__content {
    padding: 1.2rem;
  }
  .journey__card__bg h4,
  .journey__card__content h4 {
    font-size: 1rem;
  }
  .journey__card__bg span {
    font-size: 1.3rem;
  }
  .journey__card__bg p,
  .journey__card__content p {
    font-size: 0.85rem;
  }
}







  .showcase__container{
    display: grid;
    gap: 2rem;
    overflow: hidden;
  }
  
  .showcase__image img{
    max-width: 400px;
    margin-inline: auto;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
  }

  .showcase__content h4{
    margin-bottom: 2rem;
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
  }

  .showcase__content p{
    margin-bottom: 1rem;
    color: var(--text-light);
  }

  .showcase__content .btn{
    width: 100%;
    margin-top: 2rem;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    background-image: url(img/showcase2.jpeg);
    background-size: cover;
    background-position: center center;
    background-repeat: repeat;
    border-radius: 5px;
  }

  .banner__container{
    display: grid;
    gap: 2rem;
  }

  .banner__card{
    padding: 2rem 1rem;
    text-align: center;
    background-color: var(--extra-light);
    border-radius: 2rem;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  }

  .banner__card h4{
    font-size: 5rem;
    font-weight: 500;
    color: var(--primary-color);
  }

  .banner__card p{
    color: var(--text-light);

  }

  .discover__grid {
  margin-top: 4rem;
  display: grid;
  gap: 2rem;
}

.discover__card {
  padding: 2rem 1rem;
  text-align: center;
  transition: 0.3s;
  border-radius: 1rem;
}

.discover__card:hover {
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.discover__card span {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 10px 15px;
  font-size: 1.5rem;
  color: var(--primary-color);
  background-color: rgba(40, 135, 255, 0.1);
  border-radius: 100%;
}

.discover__card h4 {
  max-width: 150px;
  margin-inline: auto;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.destination__card p {
  color: var(--text-light);
}

footer {
  background-color: var(--extra-light);
}

.footer__container {
  display: grid;
  gap: 4rem 2rem;
}

.footer__col p {
  max-width: 300px;
  margin-block: 2rem;
  color: var(--text-light);
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__socials a {
  display: inline-block;
  padding: 7px 10px;
  font-size: 1.25rem;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 100%;
}

.footer__socials a:hover {
  background-color: var(--primary-color-dark);
}

.footer__col h4 {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.footer__links {
  display: grid;
  gap: 1rem;
}

.footer__links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
}

.footer__links a:hover {
  color: var(--primary-color);
}

.footer__links a span {
  font-size: 1.25rem;
}

.footer__col form {
  display: grid;
  gap: 1rem;
}

.footer__col input {
  padding: 0.75rem;
  font-size: 1rem;
  color: var(--text-dark);
  background-color: var(--white);
  border: 1px solid var(--text-light);
  border-radius: 5px;
}

.footer__col input::placeholder {
  color: var(--text-light);
}

.footer__col .btn {
  border-radius: 5px;
}

.footer__bar {
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}

@media (width > 540px) {
  .destination__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .banner__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .discover__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__col:last-child {
    grid-area: 2/1/3/2;
  }
}
  @media(width > 768px) {
    nav {
      position: static;
      padding: 2rem 1rem;
      max-width: var(--max-width);
      margin-inline: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }
    .nav__header{
      flex: 1;
      padding: 0;
      background-color: transparent;
    }
    .nav__logo .logo{
      color: #bca06b;
    }
    .nav__menu__btn{
      display: none;
    }
.nav__links{
  position: static;
  width: fit-content;
  padding: 0;
  flex-direction: row;
  background-color: transparent;
  transform: none !important;
}

.nav__links a{
  color: #bca06b;
}

.nav__links a:hover{
  color: var(--primary-color);
}

.nav__links li:last-child{
  display: none;
}

.nav__btns{
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav__btns .button{
  padding: 75rem 2rem;
  background-color: var(--text-dark);
}






.destination__grid{
  grid-template-columns: repeat(3, 1fr);
}
.journey__grid{
  grid-template-columns: repeat(3, 1fr);
}
.showcase__container{
  grid-template-columns: repeat(3, 1fr);
}

.showcase__content{
  grid-column: 2/4;
} 

.banner__container{
  grid-template-columns: repeat(3, 1fr);
}
.discover__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__container {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }

  .footer__col:last-child {
    grid-area: unset;
  }
}
  

  @media (width > 1200px) {
  .header__content {
    padding-inline: 1rem 0;
  }

  .destination__grid {
    gap: 2rem;
  }
}

.powered-link {
  color: #bca06b;
  font-weight: 600;
}
.powered-link:hover {
  color: #e6d2a3; /* versi lebih terang saat hover */
}


/* PRELOADER VIDEO */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fbfbfb; /* putih */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
  transition: opacity 0.5s ease;
}

#preloader video {
  background-color: #fbfbfb;
  width: 100%;        /* perkecil ukuran video */
  max-width: 220px;  /* batas maksimal ukuran */
  height: auto;
  object-fit: contain;
}