*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#f8f8f8;
  overflow-x:hidden;
  top: 0px !important;
}

img{
  width:100%;
  display:block;
}
a{
  text-decoration:none;
}
section{
  padding:100px 8%;
  scroll-margin-top: 100px;
}

/* ================= NAVBAR DESKTOP ================= */
.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 5%;
  background:rgba(0,0,0,0.85);
  backdrop-filter:blur(10px);
  transition: background 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 1002;
}
.logo img {
  height: 140px;
  width: auto;  
  transition: transform 0.3s ease;
}
.logo img:hover {
  transform: scale(1.05);
}

.nav-menu{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display:flex;
  gap:25px;
}
.nav-menu a{
  color:white;
  position:relative;
  transition:0.3s;
  font-weight: 500;
  font-size: 15px;
}
.nav-menu a::after{
  content:'';
  position:absolute;
  width:0%;
  height:2px;
  background:#d4a84f;
  left:0;
  bottom:-8px;
  transition:0.3s;
}
.nav-menu a:hover::after{
  width:100%;
}
.nav-menu a:hover{
  color:#d4a84f;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
  z-index: 1002;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 3px;
  background: rgba(255, 255, 255, 0.12);
  padding: 3px 6px;
  border-radius: 20px;
  border: 1px solid rgba(212, 168, 79, 0.5);
}

.lang-btn {
  background: none;
  border: none;
  color: #ccc;
  font-weight: 600;
  font-size: 12px;
  padding: 4px 8px;
  cursor: pointer;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.lang-btn.active {
  background: #d4a84f;
  color: #111;
}

.nav-book{
  background:#d4a84f;
  color:white;
  padding:10px 22px;
  border-radius:50px;
  font-size: 14px;
  font-weight: 600;
  transition:0.4s;
}
.nav-book:hover{
  transform:translateY(-3px) scale(1.03);
  box-shadow:0 12px 25px rgba(212,168,79,0.4);
}

/* HAMBURGER BUTTON (DESKTOP HIDDEN) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1005;
  position: relative;
  padding: 5px;
}
.menu-toggle .bar {
  display: block;
  width: 26px;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* HERO */
.hero{
  height:100vh;
  background:url('images/IMG_3123-HDR.jpg'); 
  background-size:cover;
  background-position:center;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  position:relative;
}
.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}
.hero-content{
  position:relative;
  z-index:2;
  color:white;
  max-width:900px;
}
.hero h1{
  font-size:72px;
  margin:20px 0;
}

/* ABOUT */
.about {
  background: #ffffff;
}
.about-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}
.about-text h2 {
  font-size: 45px;
  margin-bottom: 25px;
  color: #111;
  line-height: 1.3;
}
.vision-box, .mission-box {
  margin-bottom: 25px;
}
.vision-box h3, .mission-box h3 {
  font-size: 20px;
  color: #111;
  margin-bottom: 8px;
  font-weight: 600;
}
.vision-box p {
  color: #555;
  line-height: 1.8;
  font-size: 16px;
}
.mission-box ul {
  list-style-position: inside; 
  color: #555;
}
.mission-box ul li {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 6px;
}
.about-video iframe {
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  display: block;
}

/* GALLERY */
.gallery{
  background:#111;
  color:white;
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.title-center{
  text-align:center;
  margin-bottom:60px;
}
.section-subtitle{
  letter-spacing:4px;
  color:#d4a84f;
  margin-bottom:10px;
}
.title-center h2{
  font-size:55px;
}
.gallery-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  cursor: pointer;
}
.gallery-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(20px);
}
.gallery-overlay h3 {
  font-size: 20px;
  color: #d4a84f;
  margin-bottom: 8px;
}
.gallery-overlay p {
  font-size: 14px;
  line-height: 1.5;
  color: #ddd;
}
.gallery-card:hover img {
  transform: scale(1.1);
}
.gallery-card:hover .gallery-overlay,
.gallery-card.active .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* ROOMS */
.room-grid{
  display:grid;
  grid-template-columns:1fr;
}
.room-card{
  background:white;
  border-radius:35px;
  overflow:hidden;
  display:grid;
  grid-template-columns:1fr 1fr;
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
  transition:0.5s;
}
.room-card:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 60px rgba(0,0,0,0.15);
}
.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 350px; 
  overflow: hidden;
}
.slider-slides {
  width: 100%;
  height: 100%;
  position: relative;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out; 
  z-index: 1;
}
.slide.active {
  opacity: 1;
  z-index: 2;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(17, 17, 17, 0.6);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.slider-btn:hover {
  background: #d4a84f; 
}
.prev-btn { left: 15px; }
.next-btn { right: 15px; }
.room-content{
  padding:50px;
}
.room-content h3{
  font-size:42px;
  margin-bottom:20px;
}
.room-content p{
  line-height:1.8;
  margin-bottom:35px;
}
.facility-icons{
  display:flex;
  justify-content:space-between;
  margin-bottom:40px;
  gap:15px;
}
.facility-item{
  text-align:center;
  transition:0.4s;
}
.facility-item:hover{
  transform:translateY(-8px) scale(1.08);
}
.facility-item .icon{
  font-size:40px;
  display:block;
  margin-bottom:10px;
}
.room-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.room-footer h4{
  font-size:40px;
}
.room-footer button{
  padding:18px 40px;
  border:none;
  border-radius:15px;
  background:#111;
  color:white;
  font-weight:600;
  transition:0.4s;
  cursor: pointer;
}
.room-footer button:hover{
  transform:translateY(-6px) scale(1.04);
  background:#1f8f45;
  box-shadow:0 15px 30px rgba(31,143,69,0.35);
}

/* CONTACT */
.contact{
  position:relative;
  background-size:cover;
  background-position:center;
}
.contact-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.7);
}
.contact-container{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr 1fr 0.7fr;
  gap:30px;
  align-items:center;
}
.contact-text{
  color:white;
}
.contact-text h2{
  font-size:52px;
  margin-bottom:30px;
}
.contact-text p{
  margin-bottom:20px;
}
.whatsapp-btn{
  display:inline-block;
  margin-top:20px;
  padding:18px 35px;
  border-radius:15px;
  background:#1f8f45;
  color:white;
  transition:0.4s;
}
.whatsapp-btn:hover{
  transform:translateY(-5px) scale(1.03);
  box-shadow:0 20px 35px rgba(31,143,69,0.4);
}
.maps-btn {
  display: inline-block;
  padding: 18px 35px;
  border-radius: 15px;
  background: #d4a84f; 
  color: white;
  font-weight: 600;
  transition: 0.4s;
  text-align: center;
}
.maps-btn:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 20px 35px rgba(212, 168, 79, 0.4);
  background: #b88f3e;
}
.map-card iframe, .map-image img{
  border-radius:25px;
}
.map-card, .map-image{
  transition:0.5s;
}
.map-card:hover, .map-image:hover{
  transform:translateY(-10px);
}
.map-image img{
  height:350px;
  object-fit:cover;
}
footer{
  background:#111;
  color:white;
  text-align:center;
  padding:40px;
}

/* GOOGLE TRANSLATE TOOLBAR HIDE */
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon,
.goog-logo-link {
  display: none !important;
}
.goog-te-gadget {
  color: transparent !important;
  font-size: 0px !important;
}
#goog-gt-tt, .goog-te-balloon-frame {
  display: none !important;
}
.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}

/* ================= RESPONSIVE SMARTPHONE ================= */
@media(max-width:1000px){
  section { padding: 50px 6%; }
  .navbar { padding: 12px 4%; }
  
  .about-container { grid-template-columns: 1fr; gap: 35px; }
  .about-text h2 { font-size: 30px; }
  
  /* Logo di HP diperkecil sedikit agar muat dengan tombol */
  .logo img { height: 90px; }

  /* Tombol Hamburger */
  .menu-toggle { 
    display: flex !important; 
    z-index: 1005 !important; 
    position: relative;
    margin-right: 10px;
  }

  /* Animasi X */
  .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
  .menu-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .menu-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

  /* Menu Dropdown Overlay Full Screen */
  .nav-menu {
    position: fixed !important;
    top: -100vh; 
    left: 0;
    transform: none !important;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(17, 17, 17, 0.98) !important;
    backdrop-filter: blur(20px);
    text-align: center;
    gap: 10px;
    transition: top 0.4s ease-in-out;
    z-index: 1000 !important;
    padding: 0;
  }
  
  .nav-menu.active { 
    top: 0 !important;
  }

  .nav-menu a {
    padding: 12px 0;
    display: block;
    width: 80%;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 18px;
    font-weight: 500;
  }
  .nav-menu a::after { display: none; }

  /* Sembunyikan Switcher Bahasa Desktop di Navbar Atas */
  .desktop-lang { display: none !important; }

  /* Tombol Hubungi Kami Tetap Muncul Kompak di Kanan Atas */
  .nav-actions { margin-left: auto; display: flex; align-items: center; }
  .nav-book { 
    display: inline-block !important; 
    padding: 8px 14px !important; 
    font-size: 12px !important;
    border-radius: 20px !important;
    white-space: nowrap;
  }

  /* Switcher Bahasa Mobile di Dalam Menu Dropdown */
  .mobile-lang { 
    display: flex !important; 
    justify-content: center;
    margin-top: 25px;
    width: fit-content;
  }

  /* Adjust Konten Halaman Mobile */
  .gallery-grid{ grid-template-columns:1fr; gap: 15px; }
  .gallery-card img { height: 220px; }
  .gallery-overlay {
    background: rgba(0, 0, 0, 0.65);
    padding: 15px;
  }
  .gallery-overlay h3 { font-size: 18px; }
  
  .room-card{ grid-template-columns:1fr; }
  .room-content { padding: 25px 20px; }
  .room-content h3 { font-size: 26px; }
  .room-footer h4 { font-size: 24px; }
  .facility-icons{ flex-wrap:wrap; justify-content: center; gap: 15px; }
  
  .hero h1{ font-size: 32px !important; line-height: 1.25; }
  .description { font-size: 14px; line-height: 1.6; }
  .title-center h2 { font-size: 32px; }
  
  .contact-container{ grid-template-columns:1fr; }
  .whatsapp-btn, .maps-btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    display: block;
    box-sizing: border-box;
  }
}

@media(min-width:1001px){
  .mobile-lang { display: none !important; }
}