@charset "UTF-8";

/* ===========================================
   ROOT VARIABLES + Z-INDEX SYSTEM
=========================================== */
:root {
  /* Typography Fluid Control  */
  --font-min: 0.9rem;
  --font-fluid: 2.7vw;
  --font-max: 1.3rem;

  --h1-min: 2.6rem;
  --h1-fluid: 7.5vw;
  --h1-max: 5rem;
  --h2-min: 2.1rem;
  --h2-fluid: 6vw;
  --h2-max: 4.2rem;
  --h3-min: 1.7rem;
  --h3-fluid: 4.5vw;
  --h3-max: 3rem;

  /* Theme Colors */
  --primary: #0a0a0a;
  --secondary: #bfbfbf;
  --brown: #865f24;
  --text: #0a0a0a;
  --bg: #ffffff;

  --font-utama: "Lora", system-ui, -apple-system, sans-serif;
  --font-heading: "DancingScript", "Geist", serif;

  /* Z-Index Layers */
  --z-video: -2;
  --z-overlay: -1;
  --z-default: 1;
  --z-hero: 10;
  --z-sections: 20;
  --z-banner: 30;
  --z-more: 40;
  --z-footer: 50;
  --z-copyright: 100;
  --z-header: 200;
  --z-modal: 1000;
}

/* Theme Variants */
.theme-grey {
  --primary: #f8fafa;
  --secondary: #57595b;
  --text: #0a0a0a;
  --bg: #b7b7b7;
}
.theme-blue {
  --primary: #8fabd4;
  --secondary: #4a70a9;
  --text: #0a0a0a;
  --bg: #1c6ea4;
}
.theme-green {
  --primary: #5e936c;
  --secondary: #043915;
  --text: #0a0a0a;
  --bg: #0b3e22;
}

/* ===========================================
   GLOBAL RESET & TYPOGRAPHY
=========================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-utama);
  font-weight: 400;
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  overflow-x: hidden; /* utk hilangkan horizontal scroll */
}

main,
#wrapper,
.wrapper,
#main {
  flex: 1 0 auto;
}

/* Fluid Typography */
body,
p,
li,
span,
.boxpadding,
.fac-text p {
  font-size: clamp(
    var(--font-min),
    var(--font-fluid) + 0.5rem,
    var(--font-max)
  );
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

h1 {
  font-size: clamp(var(--h1-min), var(--h1-fluid) + 1rem, var(--h1-max));
}
h2 {
  font-size: clamp(var(--h2-min), var(--h2-fluid) + 0.8rem, var(--h2-max));
}
h3,
.fac-text h3 {
  font-size: clamp(var(--h3-min), var(--h3-fluid) + 0.5rem, var(--h3-max));
}
h4,
h5,
h6 {
  font-size: clamp(1.3rem, 4vw, 2.2rem);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: normal;
  line-height: 1.15;
  color: var(--text);
}

header h1,
header h2,
header h3,
.phasesection h4,
.fac-text h3 {
  color: var(--brown);
  text-align: center;
}

.adabg header h1,
.adabg header h2,
.adabg header h3,
.phasesection h4,
.fac-text h3 {
  color: var(--brown);
  text-align: center;
}

/* ===========================================
   FONT FACES 
=========================================== */
@font-face {
  font-family: "nautilus_pompiliusregular";
  src: url("../fonts/nautilus-webfont.woff2") format("woff2"),
    url("../fonts/nautilus-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Wotham";
  src: url("../fonts/Wotham.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("../fonts/geist-regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("../fonts/geist-medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("../fonts/geist-bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Lora";
  src: url("../fonts/Lora-Regular.ttf") format("truetype");
  font-weight: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lora";
  src: url("../fonts/Lora-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Lora";
  src: url("../fonts/Lora-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "DancingScript";
  src: url("../fonts/DancingScript-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DancingScript";
  src: url("../fonts/DancingScript-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

/* ===========================================
   HERO SECTION
=========================================== */

/*
.hero {
  position: relative;
  height: 100dvh;
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: var(--z-default);
}
*/

/* ==============================
   HERO SECTION
============================== */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Background Slideshow */
.bg-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.bg-slideshow div {
  position: absolute;
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fade 15s infinite, move 15s infinite linear;
  filter: brightness(0.9);
}

.bg-slideshow div:nth-child(1) {
  background-image: url("../../images/1.webp");
  opacity: 1;
  animation-delay: 0s, 0s;
}

.bg-slideshow div:nth-child(2) {
  background-image: url("../../images/2.webp");
  animation-delay: 5s, 5s;
}

.bg-slideshow div:nth-child(3) {
  background-image: url("../../images/3.webp");
  animation-delay: 10s, 10s;
}

/* Animasi fade & move */
@keyframes fade {
  0%,
  55%,
  100% {
    opacity: 0;
  }
  10%,
  40% {
    opacity: 1;
  }
}

@keyframes move {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.05) translate(-1%, -1%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}

/* Banner / Logo */
#banner {
  position: relative;
  z-index: 10; /* pastikan di atas slideshow */
  text-align: center;
  color: white;
}

/* setting logo index (kiri atas) */

#banner img {
  width: 200px !important;
  height: auto !important;
  max-width: 200px !important;
  min-width: 0 !important;

  position: fixed !important;
  top: 20px !important;
  left: 20px !important;

  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 768px) {
  #banner img {
    width: 140px !important;
    max-width: 140px !important;
    top: 14px !important;
    left: 14px !important;
  }
}

@media (max-width: 480px) {
  #banner img {
    width: 110px !important;
    max-width: 110px !important;
    top: 10px !important;
    left: 10px !important;
  }
}

/* end */

#banner .more {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
}

#banner .more:hover {
  background: rgba(255, 255, 255, 0.4);
}

/*Special for Facilities Learn More Button*/
#facilities #banner {
  all: unset; /* reset semua pengaruh CSS parent */
  display: flex; /* buat container baru yang bersih */
  justify-content: center; /* center horizontal */
  width: 100%; /* harus full width */
}

#facilities #banner {
  position: relative;
  width: 100%;
}

#facilities #banner .more {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -40px; /* naikkan */
}
/*=============================================*/

#banner .inner {
  width: 100%;
  max-width: 100%;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: var(--z-banner);
}

#banner img {
  width: clamp(380px, 40vw, 700px);
  height: auto;
  max-width: 92vw;
  display: block;
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.7));
}

#banner header h1,
#banner p,
#banner .more {
}

/* Video Background */
.video-container {
  position: fixed;
  inset: 0; /* top:0, left:0, right:0, bottom:0 */
  width: 100vw; /* full width viewport */
  height: 100dvh; /* full height dynamic viewport – anti goyang address bar */
  z-index: var(--z-video);
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 50%; /* center vertikal */
  left: 50%; /* center horizontal */
  min-width: 100vw; /* minimal full width – zoom horizontal kalau perlu */
  min-height: 100dvh; /* minimal full height – zoom vertikal kalau perlu */
  width: auto; /* biar bisa zoom melebihi 100% */
  height: auto;
  transform: translate(-50%, -50%); /* perfect center tanpa geser */
  object-fit: cover;
  object-position: center 30%; /* geser sedikit ke atas biar gerbang + logo keliatan jelas, ganti 40% kalau mau lebih bawah */
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  z-index: var(--z-overlay);
  pointer-events: none;
}

/* Extra fix untuk iOS Safari (kalau masih ada black bar tipis) */
@supports (-webkit-touch-callout: none) {
  /* iOS only */
  .video-container video {
    object-fit: fill; /* paksa isi full tanpa crop, tapi bisa distorsi sedikit – atau tetap cover */
  }
}

/* Android Chrome fix (kalau address bar goyang) */
@supports (height: 100dvh) {
  .hero {
    height: 100dvh;
  }
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  z-index: var(--z-overlay);
  pointer-events: none;
}

/* ===========================================
   SECTIONS GENERAL
=========================================== */
section.wrapper,
section.post,
section {
  position: relative;
  z-index: var(--z-sections);
}

.bg-img:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: var(--z-overlay);
}

.bg-img > * {
  position: relative;
  z-index: 2;
}

.more {
  position: relative;
  z-index: var(--z-more);
}

.bg-news {
  background-color: var(--primary);
}

.bg-packages {
  background-color: var(--primary);
}

.bg-1 {
  background-color: var(--primary);
}

.bg-2 {
  background-color: #e6e6e6;
  position: relative;
}

.bg-3 {
  background-color: #fbfbee;
  position: relative;
}

.bg-2::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ===========================================
   FACILITIES 
=========================================== */
#facilities {
  padding: clamp(80px, 15vw, 160px) 0;
  z-index: 200;
}

.fac-item {
  display: flex;
  align-items: center;

  margin-bottom: clamp(5rem, 12vw, 12rem);
}

.fac-container {
  width: min(80%, 1400px);
  margin: 0 auto;
}

.fac-item:nth-child(even) {
  flex-direction: row-reverse;
}

.fac-text h2 {
  color: var(--brown);
  text-align: center;
}

.fac-text p {
  color: #0a0a0a;
}

.fac-image {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.fac-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.fac-image:hover img {
  transform: scale(1.06);
}

.fac-text {
  flex: 1;
  padding: 0 2em;
}

/* Mobile: Teks dulu, gambar bawah + garis pembatas  */
@media (max-width: 991px) {
  .fac-item,
  .fac-item:nth-child(even) {
    flex-direction: column-reverse !important;
    text-align: center;
    gap: clamp(2rem, 8vw, 4rem);
    border-bottom: 1px solid var(--secondary);
    padding-bottom: clamp(4rem, 12vw, 6rem);
    margin-bottom: clamp(4rem, 12vw, 6rem);
  }

  .fac-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 2rem;
  }

  .fac-text {
    padding: 0 0 2rem;
  }

  .fac-text h3 {
    font-size: clamp(2.4rem, 8vw, 3.6rem) !important;
  }
}

/* ===========================================
   FOOTER & COPYRIGHT
=========================================== */
#footer {
  flex-shrink: 0;
  background: #fbfbee;
  position: relative;
  z-index: var(--z-footer);
}

.copyright {
  background: var(--secondary);
  color: #f0f0f0;
  text-align: center;
  padding: 12px 0;
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  z-index: var(--z-copyright);
  box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.3);
}

/* ===========================================
   CUSTOM RANDOM
=========================================== */
.boxpadding a {
  color: var(--text);
  text-decoration: none;
}

.boxpadding a:hover {
  color: var(--secondary);
}

.phase-container {
  width: min(80%, 1400px);
  margin: 0 auto;
}

.contact-container {
  width: min(90%, 1400px);
  margin: 0 auto;
}

.gallery-container {
  width: 85%;
  margin: 0 auto;
}

.image-wrapper {
  width: 100%;
  height: 100%;
  min-height: 300px;
  overflow: hidden;
  border-radius: 12px;
}

.image-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

html,
body {
  overflow-x: hidden;
}

.list-group-item h4 {
  font-family: var(--font-utama) !important;
  font-weight: 750;
  margin: auto;
  padding: auto;
}

.list-group-item {
  text-align: left;
}

.list-group-item i {
  display: inline-block !important;
  width: 24px !important;
  text-align: center !important;
  margin-right: 12px !important;
  font-size: 1em !important;
}

@media (min-width: 992px) {
  .list-group-2col {
    display: flex;
  }
  .list-group-2col .list-group-item {
    flex: 0 0 50%;
    max-width: 50%;
    box-sizing: border-box;
    padding: 8px 15px;
  }
}

.infopac p {
  color: var(--secondary);
}

#bgmeeting,
#bgwedding {
  z-index: var(--z-sections);
}

/* ==== ROOM SLIDER – FINAL FIX 100% WORK DI SEMUA DEVICE ==== */
.room-slider {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 ratio – ini yang bikin muncul di PC! */
  background: #000;
}

.room-slider .slides {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

/* GANTI SELURUH .slide DAN .active JADI INI */
.room-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.15); /* mulai agak zoom */
  transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1); /* super smooth */
}

.room-slider .slide.active {
  opacity: 1;
  transform: scale(1); /* zoom in + masuk */
  z-index: 10;
}

/* Gambar lama keluar perlahan */
.room-slider .slide:not(.active) {
  z-index: 1;
}

.room-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  font-weight: 500;
  font-size: clamp(0.8rem, 2.5vw, 1.3rem);
}

/* TOMBOL BULAT SEMPURNA + KACA TRANSPARAN KEMBALI */
.room-slider button.prev,
.room-slider button.next,
.room-slider .prev,
.room-slider .next {
  all: unset !important; /* reset semua style dari luar */
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 56px !important;
  height: 56px !important;
  background: transparent !important;
  color: white !important;
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
  border-radius: 999px !important; /* 999px = pasti bulat */
  font-size: 2rem !important;
  cursor: pointer !important;
  z-index: 999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  transition: all 0.35s ease !important;
  box-sizing: border-box !important;
  left: 18px !important; /* prev */
  right: auto !important;
}

.room-slider button.next,
.room-slider .next {
  left: auto !important;
  right: 18px !important;
}

/* Hover */
.room-slider button.prev:hover,
.room-slider button.next:hover,
.room-slider .prev:hover,
.room-slider .next:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: white !important;
  transform: translateY(-50%) scale(1.15) !important;
}

/* Responsif HP & Tablet – tetap bulat & rapi */
@media (max-width: 768px) {
  .room-slider {
    padding-bottom: 65%; /* agak lebih tinggi di tablet/HP */
    border-radius: 12px;
  }
  .room-slider .prev,
  .room-slider .next {
    width: 52px !important;
    height: 52px !important;
    font-size: 1.9rem !important;
  }
  .room-slider .prev {
    left: 12px;
  }
  .room-slider .next {
    right: 12px;
  }
}

/* HP tetap bulat */
@media (max-width: 480px) {
  .room-slider button.prev,
  .room-slider button.next,
  .room-slider .prev,
  .room-slider .next {
    width: 32px !important;
    height: 32px !important;
    font-size: 1rem !important;
  }
}

/* Dots tetap cantik */
.dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.dots span {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transition: all 0.3s;
}

.dots span.active {
  background: white;
  transform: scale(1.4);
}

/*------------------------------------------------------------------
    Scrollup
-------------------------------------------------------------------*/
.scrollup {
  width: 40px;
  height: 40px;
  text-indent: -9999px;
  z-index: 9998;
  opacity: 0.3;
  position: fixed;
  bottom: 20px;
  right: 40px;
  display: none;
  background: url(../images/icon_top.png) no-repeat;
}

.scrollup:hover {
  opacity: 0.8;
}

.rooms {
  border-radius: 10px !important;
  padding: 0 2em !important;
}

.shadow {
  text-shadow: -2px -2px 0 rgba(0, 0, 0, 0.125);
}

/*------------------------------------------------------------------
    Carousel Testimonial
-------------------------------------------------------------------*/
.fullscreen-mode {
  position: relative;
  width: 100vw !important;
  height: 100vh !important;
  margin-left: calc(-50vw + 50%) !important; /* biar tengah sempurna */
  border-radius: 0 !important;
  box-shadow: none !important;
}

.fullscreen-mode .slides,
.fullscreen-mode .slide,
.fullscreen-mode img {
  height: 100% !important;
  border-radius: 0 !important;
}

.fullscreen-mode img {
  object-fit: cover !important;
  transform: scale(1.08);
  transition: transform 12s ease !important;
}

.fullscreen-mode .slide.active img {
  transform: scale(1.15);
}

/* Caption lebih besar & mewah */
.fullscreen-mode .slide-caption {
  font-size: clamp(1.4rem, 4vw, 3rem) !important;
  padding: 2rem 2rem 3rem !important;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85)) !important;
  border-radius: 0 !important;
}

/* Tombol lebih besar di fullscreen */
.fullscreen-mode .prev,
.fullscreen-mode .next {
  width: 70px !important;
  height: 70px !important;
  font-size: 2.8rem !important;
  border-width: 3px !important;
}

/* Dots lebih gede */
.fullscreen-mode .dots {
  bottom: 40px !important;
}

.fullscreen-mode .dots span {
  width: 12px !important;
  height: 12px !important;
}

/* TULISAN PINDAH KE KIRI BAWAH – SUPER CLEAN & MEWAH */
.gallery-title-overlay {
  position: absolute;
  bottom: 9%; /* jarak dari bawah */
  left: 6%; /* jarak dari kiri */
  transform: none !important; /* matiin translate tengah */
  text-align: left; /* rata kiri */
  color: var(--primary);
  z-index: 50;
  width: 60%;
  max-width: 800px;
  pointer-events: none;
  padding: 0;
}

.gallery-title-overlay h1 {
  color: var(--primary);
  margin: 0 0 1rem;
}

.gallery-title-overlay p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.6;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
  color: var(--primary);
  margin: 0;
}

/* HP tetap keren */
@media (max-width: 768px) {
  .gallery-title-overlay {
    left: 5%;
    bottom: 5%;
    width: 85%;
  }

  .gallery-title-overlay h1 {
    font-size: clamp(1.65rem, 5.3vw, 2.45rem);
  }

  .gallery-title-overlay p {
    display: -webkit-box;
    font-size: small;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* Floating Booking Button */

#bookingWidget {
  font-size: 0.8em !important;
}

.btn-floating-booking {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1050;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.btn-floating-booking:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Modal Booking */
#bookingModal .modal-content {
  border-radius: 15px;
}
#bookingModal .btn-primary {
  background-color: var(--secondary) !important;
  border: none;
}

#bookingWidget {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
  border: 1px solid #e0e0e0;
}

#bookingWidget::-webkit-scrollbar {
  width: 6px;
}

#bookingWidget::-webkit-scrollbar-thumb {
  background: var(--secondary) !important;
  border-radius: 10px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.form-control,
.form-select-lg {
  font-size: 0.8em;
}

#bookingwidget p {
  text-shadow: none !important;
}

#bookingWidget input[type="submit"],
input[type="reset"],
input[type="button"],
button,
.button {
  background-color: #5a5a5a;
}

#bookingTrigger img:hover {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 15px 40px rgba(144, 64, 64, 0.4);
}

.counter-btn {
  width: 45px !important;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.counter-btn:hover {
  background-color: #007bff !important;
  color: white !important;
}

.input-group .form-control {
  border-left: none;
  border-right: none;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
}

.input-group {
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  overflow: hidden;
}

.active > .page-link,
.page-link.active {
  z-index: 3;
  color: var(--primary);
  background-color: var(--secondary);
  border: none;
}

.page-link {
  color: var(--secondary);
}

.page-link:hover {
  color: #0a0a0a;
}

/* ANIMASI BERKILAU & PULSE */
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 107, 107, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
  }
}

/* Mau warna lain? Ganti kode warna di bawah ini aja! */
#bookingTrigger {
  background: linear-gradient(
    45deg,
    #ff9d6c,
    /* orange */ #ff6b9d,
    /* pink */ #c77dff,
    /* purple */ #8c0ff8a,
    /* mint */ #6c5ce7
  ); /* indigo */
  background-size: 400% 400%;
}

#bookingWidget {
  overflow-x: hidden; /* ga kelebaran */
  overflow-y: auto; /* scroll vertikal kalau konten panjang */
}

@media (max-width: 576px) {
  /* HP kecil (under 576px) */
  #bookingWidget {
    width: 95vw; /* lebih lebar di HP kecil */
    bottom: 10px;
    right: 10px;
  }
}

.facilities-hero {
  position: relative;
  width: 100%;
  overflow: visible; /* biarkan konten scroll */
  z-index: 1;
  padding: 120px 0; /* bisa sesuai kebutuhan */
}

.facilities-hero .bg-slideshow {
  position: fixed; /* tetap di tempat saat scroll */
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh; /* atau 100vh */
  overflow: hidden;
  z-index: -1; /* biarkan konten di atasnya */
}

/* Konten di atas slideshow */
.fac-container {
  position: relative;
  z-index: 1;
  /*padding: 120px 20px;*/
}

#facilities {
  background-size: contain;
  background-position: center;
  background-repeat: repeat-y;
  min-height: 100vh;
}

/* Sembunyikan tombol "more" di tampilan mobile */
@media (max-width: 768px) {
  #banner .more {
    display: none;
  }
}

.browncolor {
  color: var(--brown) !important;
}

.whitecolor {
  color: #f0f0f0;
}

/* SECTION UTAMA */
.about-normal {
  width: 100%;
  overflow: hidden;
}

/* SETIAP GAMBAR */
.about-normal .about-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* PENTING: matikan parallax */
  background-attachment: scroll;
}

/* Gambar 1 */
.about-normal .bg-1 {
  background-image: url("../../images/banner/about1.jpg");
  display: flex;
  align-items: center;
}

/* Gambar 2 */
.about-normal .bg-2 {
  background-image: url("../../images/banner/about2.jpg");
}

.about-normal .about-bg {
  min-height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-normal .bg-1 {
  background-position: center bottom;
}

.about-normal .bg-2 {
  background-position: center top;
}

.content p {
  text-align: center;
}

/* ==========================================
   MOBILE FINAL FIX – RASIO HORIZONTAL
   SLIDE JALAN • GAMBAR UTUH • TIDAK MENINGGI
========================================== */
@media (max-width: 768px) {
  /* Slider pakai rasio layar horizontal */
  #gallery .room-slider {
    width: 100%;
    aspect-ratio: 16 / 9; /* KUNCI UTAMA */
    max-height: 40vh; /* aman di HP */
    background: #000;
    overflow: hidden;
  }

  /* Struktur slider tetap */
  #gallery .slides {
    display: flex;
    width: 100%;
    height: 100%;
  }

  #gallery .slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Gambar UTUH & TIDAK MENINGGI */
  #gallery .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* tidak terpotong */
    object-position: center;
    display: block;
  }
}

@media (max-width: 768px) {
  #gallery .dots {
    display: none !important;
  }
}

.lang-dropdown {
  position: relative;
  display: block;
  margin-top: 10px;
  border-radius: 5px;
}

/* Tombol */
.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  width: 100%;
  text-align: left;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.lang-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Rotasi panah */
.lang-btn i.fa-caret-down {
  transition: transform 0.3s ease;
}

/* Dropdown menu (awalnya hidden) */
.lang-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
  z-index: 10;
  list-style: none;
  padding: 10px 0;
  margin: 0;
}

/* Saat aktif (dari JS) */
.lang-dropdown.active .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown.active .lang-btn i.fa-caret-down {
  transform: rotate(180deg);
}

/* Item menu */
.lang-menu li {
  padding: 8px 20px;
}

.lang-menu li a {
  color: white;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease;
  font-size: 0.9em;
}

.lang-menu li a:hover {
  background-color: rgba(182, 182, 182, 0.15);
  border-radius: 3px;
}

.menu-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  text-decoration: none !important;
}





/* === TESTIMONIAL FINAL WITH TWO RINGS (EXACT MATCH) 30 dec 2025 === */
.js-carousel-2 .owl-item {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

/* Card testimonial */
.testimonial {
    display: flex;
    flex-direction: column;
    justify-content: center;   
    align-items: center;       
    text-align: center;

    min-height: 420px;
    padding: 30px;
    width: 100%;
    box-sizing: border-box; 
}


.testimonial .author-image {
    width: 110px;
    height: 110px;
    margin: 0 auto 18px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);  /

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text content */
.testimonial p {
    max-width: 85%;
    margin: 10px auto;
    line-height: 1.7;
    padding-left: 10px;     
    padding-right: 10px;
}

/* Media query untuk mobile */
@media (max-width: 768px) {
    .testimonial {
        padding: 20px;  
    }

    .testimonial .author-image {
        width: 90px;
        height: 90px;
    }

    .testimonial .author-image img {
        width: 100%; 
        height: 100%;
    }

    .testimonial p {
        padding-left: 0;
        padding-right: 0;
    }
}


/* FIX FINAL: biarkan scroll vertikal jalan di mobile */
.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y !important;
    touch-action: pan-y !important;
}


.footertitle {
    color: var(--brown);
    font-weight: bold;   
}

.footerp {
    color: black;
    padding-bottom : 1em;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 1em;
}

.footer-social img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.footer-social img:hover {
    transform: scale(1.1);
}

#packages-detail {
  margin: 0;
  padding: 0;
}

/* wrapper banner */
.packages-banner {
  position: relative;
  width: 100%;
}

/* gambar tetap full width */
.packages-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* judul di atas gambar */
.packages-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.packages-title h1 {
  color: white;       /* biar kelihatan di atas gambar */
  text-shadow: 2px 2px 6px rgba(0,0,0,0.5); /* biar teks jelas */
}


/* ===== LAYOUT PACKAGES (MEETING & WEDDING) ===== */
#meeting_packages,
#wedding_packages {
  margin-top: 5em;
  margin-bottom: 3em;
}

/* Biar teks dan gambar sejajar tengah vertikal */
/* Wrapper khusus untuk kolom gambar */
#meeting_packages .img-wrapper,
#wedding_packages .img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Supaya gambar tidak terlalu besar tapi tetap bagus */
#meeting_packages img,
#wedding_packages img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  display: block;
  margin: 0 auto;
}

/* Untuk HP biar tetap rapi */
@media (max-width: 768px) {
  #meeting_packages,
  #wedding_packages {
    text-align: center;
  }

  #meeting_packages img,
  #wedding_packages img {
    max-width: 100%;
    margin-top: 20px;
  }
}

.pactitle {
    color: var(--brown);
    font-family: var(--font-heading);
    font-size : 2.5em;
    font-weight: bold;   
}

.pacp {
    color: black;
    line-height: 2;
    font-size: clamp(0.95rem, 2.5vw, 1.3rem);
}

body.packages-page {
  background-color: #fbfbee !important;
}

.package-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* ===== DESKTOP (lg ke atas) ===== */
@media (min-width: 992px) {
  /* Meeting: teks kiri - gambar kanan (default) */
  #meeting_packages {
    flex-direction: row;
  }

  /* Wedding: gambar kiri - teks kanan */
  #wedding_packages {
    flex-direction: row-reverse;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {
  /* Semua jadi: TEKS DULU → GAMBAR */
  #meeting_packages,
  #wedding_packages {
    flex-direction: column;
  }
}

/* Supaya gambar rapi */
.package-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px; /* opsional */
}

/* ===== LAYOUT HEADER BAR ===== */
.header-wrapper {
  display: flex;
  align-items: center;  
  justify-content: flex-end;
  gap: 12px;
}


/* ===== LANGUAGE DI ATAS (SAMPING HAMBURGER) ===== */
.lang-top {
  position: relative; /* PENTING: biar dropdown nempel ke tombol */
  display: inline-flex;
  align-items: center;
}

/* ===== TOMBOL BAHASA (YANG DIKLIK) ===== */
.lang-btn-top {
  color: white;
  text-decoration: none;
  font-size: 1.2em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

/* ===== DROPDOWN (VERSI SUPER TIPIS) ===== */
.lang-menu-top {
  position: absolute;
  top: 0;      /* jarak dari tombol */
  left: 0;        /* nempel ke tombol bendera */
  right: auto;    /* matikan rata kanan layar */
  background: rgba(255, 255, 255, 0.35);
  list-style: none;
  padding: 8px 10px;
  margin: 0;
  display: none;
  min-width: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  border-radius: 10px;
  white-space: nowrap;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}


.lang-menu-top {
  left: 50%;
  transform: translateX(-50%);
}

.lang-btn{
  width: 50px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
  border-radius: 10%;
  text-decoration: none !important;
  font-size : 1em;
}


/* ===== ITEM DROPDOWN (SANGAT TIPIS) ===== */
.lang-menu-top li {
  padding: 6px 6px;   /* INI KUNCI SUPAYA TIPIS */
  line-height: 1.2;   /* jarak vertikal diperkecil */
}

.lang-menu-top li a {
  color: #333;
  text-decoration: none;
  font-size: 14px;    /* lebih kecil & rapi */
  display: block;
}

/* hover halus saja */
.lang-menu-top li:hover {
  transform: scale(1.15);
  transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ===== KLIK UNTUK MUNCUL ===== */
.lang-top:focus-within .lang-menu-top {
  display: block;
}

.lang-flag-img {
  width: 30px;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
}

.lang-flag {
  font-size: 18px;      /* bisa kecilkan/besarkan sesuai selera */
  line-height: 1;
  display: inline-block;
}

.pac-bg{
    background-color: #fbfbee !important;
}

.lang-btn-top,
.lang-menu-top a {
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    color: #fff;
}

.lang-menu-top a:hover {
    opacity: 0.7;
}



/* =================================
   MOBILE: PORTRAIT - 29 JAN 2026
================================= */
@media (max-width: 768px) {

  .bg-slideshow div:nth-child(1) {
    background-image: url("../../images/1_mobile.webp");
  }

  .bg-slideshow div:nth-child(2) {
    background-image: url("../../images/2_mobile.webp");
  }

  .bg-slideshow div:nth-child(3) {
    background-image: url("../../images/3_mobile.webp");
  }

}
 
@media (max-width: 768px) {

  /* HERO */
  .hero {
    position: relative;
    height: 100vh;          
    min-height: 100vh;
    overflow: hidden;
    background: transparent;
  }

  /* SLIDESHOW CONTAINER */
  .bg-slideshow {
    position: absolute;
    inset: 0;
    z-index: -1;            
  }

  /* SLIDE */
  .bg-slideshow div {
    width: 100%;           
    height: 100%;
    top:0%;
    left:0%;

    background-size: cover;           
    background-repeat: no-repeat;
    background-position: center top;  

  }

}

@media (max-width: 768px) {

  /* HERO */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    background: transparent;
  }

  /* SLIDESHOW CONTAINER */
  .bg-slideshow {
    position: absolute;
    inset: 0;
    z-index: -1;
  }

  /* SLIDE */
  .bg-slideshow div {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;

    opacity: 0;
    animation:
    fade 15s infinite,
    zoomOut 15s infinite cubic-bezier(0.4, 0, 0.2, 1);
  }

  .bg-slideshow div:nth-child(1) {
    opacity: 1;
    animation-delay: 0s, 0s;
  }

  .bg-slideshow div:nth-child(2) {
    animation-delay: 5s, 5s;
  }

  .bg-slideshow div:nth-child(3) {
    animation-delay: 10s, 10s;
  }
}


@keyframes zoomOut {
  0% {
    transform: scale(1.05);
  }
  45% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}


