/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* ===== HEADER ===== */
.room-header {
  background: url("../images1.JPG") center/cover no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  text-align: center;
  margin-top: 80px; /* atau bisa 60px kalau mau lebih rapat */
}


.room-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.room-header .overlay {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 20px;
}

.room-header h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.room-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ===== ROOM LIST (VERTIKAL) ===== */
.room-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 70px 10%;
  background-color: #f9f9f9;
}

.room-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.room-img {
  width: 45%;
  height: 300px;
  object-fit: cover;
}

.room-content {
  padding: 30px;
  flex: 1;
}

.room-content h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #333;
}

.room-content .price {
  color: #b48a54;
  font-weight: 600;
  margin-bottom: 10px;
}

.room-content .desc {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.detail-btn {
  display: inline-block;
  background-color: #b48a54;
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.detail-btn:hover {
  background-color: #8f6f3f;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .room-item {
    flex-direction: column;
  }

  .room-img {
    width: 100%;
    height: 250px;
  }

  .room-content {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .room-header {
    margin-top: 60px; /* lebih rapat di tablet */
  }
}

@media (max-width: 480px) {
  .room-header {
    margin-top: 40px; /* lebih rapat lagi di hp */
  }
}



/* ===== FOOTER ===== */
.footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 25px 10px;
  font-size: 0.9rem;
}
/* ===== NAVBAR DEFAULT ===== */
.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: #1b3528;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.35s ease;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ===== NAVBAR TOP ===== */
.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
  padding: 0 80px;
  color: #fff;
  font-size: 15px;
}

.navbar-left { display: flex; align-items: center; gap: 12px; }
.divider { color: rgba(255,255,255,0.5); }
.link { color: #fff; cursor: pointer; transition: 0.25s; }
.link:hover { color: #c8a87a; }

/* ===== DROPDOWN ===== */
.dropdown { position: relative; }
.dropbtn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
}
.dropdown-content {
  display: none;
  position: absolute;
  background: rgba(30,30,30,0.98);
  min-width: 220px;
  border-radius: 4px;
  top: 30px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  z-index: 1200;
}
.dropdown-content.show { display: block; }
.dropdown-content a {
  display: block;
  padding: 10px 14px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
.dropdown-content a:hover { background: rgba(255,255,255,0.03); color: #c8a87a; }

/* ===== LOGO ===== */
.navbar-middle {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}

.navbar-logo {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.navbar-logo img { width: 100px; filter: brightness(0) invert(1); margin-bottom: 6px; }
.navbar-logo h1 {  font-family: "Rye", cursive; font-size: 34px; color: #fff; letter-spacing: 6px;}
.navbar-logo p { color: #c8a87a; letter-spacing: 10px; font-size: 12px; }

/* ===== BOOK NOW ===== */
.book-now {
  background-color: #fff;
  color: #1b3528;
  font-weight: 600;
  padding: 12px 45px;
  text-decoration: none;
  font-size: 14px;
  clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
  transition: transform .2s ease, background-color .2s;
}
.book-now:hover { background-color: #c19a64; transform: scale(1.03); }

/* ===== NAVBAR BOTTOM ===== */
.navbar-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.navbar-bottom ul {
  display: flex;
  justify-content: center;
  gap: 45px;
  list-style: none;
  padding: 14px 0;
}
.navbar-bottom ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color .2s;
}
.navbar-bottom ul li a:hover { color: #c8a87a; }

/* ===== SCROLLED STATE ===== */
.navbar.scrolled {
  background: #1b3528;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  height: 100px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  transition: all 0.35s ease;
}

.navbar.scrolled .navbar-top { display: none; }

.navbar.scrolled .navbar-middle {
  position: relative;
  transform: none;
  left: 0;
  top: 0;
  margin: 0;
  text-align: left;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.navbar.scrolled .navbar-logo {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.navbar.scrolled .navbar-logo img {
  width: 55px;
  filter: none;
}

.navbar.scrolled .navbar-logo h1 {
  color: #fff;
  font-size: 20px;
  margin: 0;
  font-weight: 600;
}

.navbar.scrolled .navbar-logo p {
  color: #a37c48;
  font-size: 12px;
  letter-spacing: 4px;
  margin: 0;
}

.navbar.scrolled .navbar-bottom {
  border-top: none;
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar.scrolled .navbar-bottom ul li a { color: #fff; }
.navbar.scrolled .navbar-bottom ul li a:hover { color: #a37c48; }

/* ===== BOOK NOW di kanan saat navbar SCROLLED ===== */
.navbar-right-scrolled {
  display: none; /* default tersembunyi */
}

.navbar.scrolled .navbar-right-scrolled {
  display: block;
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
}

.navbar.scrolled .navbar-right-scrolled .book-now {
  background-color: #fff;
  color: #1b3528;
  font-weight: 600;
  padding: 10px 35px;
  font-size: 14px;
  letter-spacing: 1px;
  clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
  transition: 0.3s ease;
}

.navbar.scrolled .navbar-right-scrolled .book-now:hover {
  background-color: #fff;
  transform: scale(1.05);
}


/* Responsive */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .contact-column {
    text-align: center;
  }
}
/* ===== FOOTER ===== */
.footer {
  background-color: #1b3528; /* warna emas lembut */
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-align: center;
  margin-top: 80px;
}

/* --- BAGIAN ATAS --- */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 10%;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #fff;
  letter-spacing: 1px;
}

.footer-column p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f8f8f8;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.footer-logo img {
  width: 120px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
}

.footer-logo h2 {
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 2px;
  font-weight: 600;
}

/* --- BAGIAN BAWAH --- */
.footer-bottom {
  background-color: #fff;
  padding: 15px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom-left p {
  font-size: 0.9rem;
  color: #000;
  margin: 0;
}

.footer-bottom-right {
  display: flex;
  gap: 20px;
}

.footer-bottom-right a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.footer-bottom-right a:hover {
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
  }

  .footer-column {
    text-align: center;
  }

  .footer-logo img {
    width: 100px;
  }

  .footer-logo h2 {
    font-size: 1.1rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-bottom-right {
    justify-content: center;
  }
}


/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
html {
  scroll-behavior: smooth;
}


/* ===== BODY ===== */
body {
  background-color: #fff;
  color: #333;
}

/* ===== NAVBAR DEFAULT ===== */
.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: #1b3528;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.35s ease;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ===== NAVBAR TOP ===== */
.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
  padding: 0 80px;
  color: #fff;
  font-size: 15px;
}

.navbar-left { display: flex; align-items: center; gap: 12px; }
.divider { color: rgba(255,255,255,0.5); }
.link { color: #fff; cursor: pointer; transition: 0.25s; }
.link:hover { color: #c8a87a; }

/* ===== DROPDOWN ===== */
.dropdown { position: relative; }
.dropbtn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
}
.dropdown-content {
  display: none;
  position: absolute;
  background: rgba(30,30,30,0.98);
  min-width: 220px;
  border-radius: 4px;
  top: 30px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  z-index: 1200;
}
.dropdown-content.show { display: block; }
.dropdown-content a {
  display: block;
  padding: 10px 14px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
.dropdown-content a:hover { background: rgba(255,255,255,0.03); color: #c8a87a; }

/* ===== LOGO ===== */
.navbar-middle {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}

.navbar-logo {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}



/* ===== BOOK NOW ===== */
.book-now {
  background-color: #fff;
  color: #1b3528;
  font-weight: 600;
  padding: 12px 45px;
  text-decoration: none;
  font-size: 14px;
  clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
  transition: transform .2s ease, background-color .2s;
}
.book-now:hover { background-color: #c19a64; transform: scale(1.03); }

/* ===== NAVBAR BOTTOM ===== */
.navbar-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.navbar-bottom ul {
  display: flex;
  justify-content: center;
  gap: 45px;
  list-style: none;
  padding: 14px 0;
}
.navbar-bottom ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color .2s;
}
.navbar-bottom ul li a:hover { color: #c8a87a; }

/* ===== SCROLLED STATE ===== */
.navbar.scrolled {
  background: #1b3528;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  height: 100px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  transition: all 0.35s ease;
}

.navbar.scrolled .navbar-top { display: none; }

.navbar.scrolled .navbar-middle {
  position: relative;
  transform: none;
  left: 0;
  top: 0;
  margin: 0;
  text-align: left;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.navbar.scrolled .navbar-logo {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.navbar.scrolled .navbar-logo img {
  width: 55px;
  filter: none;
}

.navbar.scrolled .navbar-logo h1 {
  color: #fff;
  font-size: 20px;
  margin: 0;
  font-weight: 600;
}

.navbar.scrolled .navbar-logo p {
  color: #a37c48;
  font-size: 12px;
  letter-spacing: 4px;
  margin: 0;
}

.navbar.scrolled .navbar-bottom {
  border-top: none;
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar.scrolled .navbar-bottom ul li a { color: #fff; }
.navbar.scrolled .navbar-bottom ul li a:hover { color: #a37c48; }

/* ===== BOOK NOW di kanan saat navbar SCROLLED ===== */
.navbar-right-scrolled {
  display: none; /* default tersembunyi */
}

.navbar.scrolled .navbar-right-scrolled {
  display: block;
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
}

.navbar.scrolled .navbar-right-scrolled .book-now {
  background-color: #fff;
  color: #1b3528;
  font-weight: 600;
  padding: 10px 35px;
  font-size: 14px;
  letter-spacing: 1px;
  clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
  transition: 0.3s ease;
}

.navbar.scrolled .navbar-right-scrolled .book-now:hover {
  background-color: #fff;
  transform: scale(1.05);
}
/* ===== HERO SLIDER ===== */
.hero-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 180px;
}

.slider-track {
  display: flex;
  gap: 40px;
  will-change: transform;
}

.slide {
  position: relative;
  flex-shrink: 0;
  width: 500px;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
  pointer-events: none;
}

.text-overlay h1 {
  font-size: 1.8rem;
  font-weight: 600;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.text-overlay p {
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.slide:hover .text-overlay p {
  opacity: 1;
}

/* ===== ROOMS SECTION ===== */
.rooms {
  background-color: #faf9f7;
  padding: 100px 60px;
  text-align: center;
}

.section-title {
  font-size: 30px;
  font-weight: 600;
  color: #a37c48;
  margin-bottom: 50px;
  letter-spacing: 2px;
}

.rooms-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.room-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  width: 340px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.room-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.room-info {
  padding: 22px 18px 30px;
}

.room-info h3 {
  font-size: 20px;
  color: #1b1b1b;
  margin-bottom: 6px;
}

.room-info .price {
  color: #a37c48;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 10px;
}

.room-info .desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.book-btn {
  background-color: #a37c48;
  color: #fff;
  padding: 10px 35px;
  text-decoration: none;
  font-weight: 600;
  clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
  transition: background-color 0.3s ease, transform 0.2s;
}

.book-btn:hover {
  background-color: #c19a64;
  transform: scale(1.05);
}

/* ===== Responsive Fix ===== */
@media (max-width: 992px) {
  .rooms {
    padding: 70px 30px;
  }

  .rooms-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .room-card {
    width: 90%;
    max-width: 380px;
  }
}

@media (max-width: 576px) {
  .rooms {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 35px;
  }

  .room-card {
    width: 100%;
    max-width: 360px;
  }

  .room-card img {
    height: 200px;
  }

  .room-info h3 {
    font-size: 18px;
  }

  .room-info .price {
    font-size: 14px;
  }

  .book-btn {
    padding: 9px 25px;
    font-size: 14px;
  }
}

/* ===== CONTACT SECTION ===== */
.contact {
  background-color: #f8f6f4;
  text-align: center;
  padding: 100px 20px 0;
  position: relative;
}

.contact-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto 60px;
  flex-wrap: wrap;
  gap: 100px; /* jarak antar kolom kiri, tengah, kanan */
}

.contact-column {
  flex: 1;
  min-width: 260px;
}

.contact-column h3 {
  color: #a37c48;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.contact-column p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ===== LOGO TENGAH ===== */
.contact-logo {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px; /* jarak antara logo dan teks di bawahnya */
  margin-top: -10px; /* sedikit naik agar sejajar dengan kolom lainnya */
}

.contact-logo img {
  width: 110px;
  height: auto;
}

/* ===== MAP ===== */
.map-container {
  width: 100%;
  margin-top: 60px;
}

iframe {
  border: none;
  width: 100%;
  height: 350px;
  border-radius: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .contact-content {
    gap: 70px;
  }
}

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }
  .contact-logo {
    margin-top: 0;
  }
}

/* ===== FOOTER ===== */
.footer {
  background-color: #1b3528; /* warna emas lembut */
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-align: center;
  margin-top: 80px;
}

/* --- BAGIAN ATAS --- */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 10%;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #fff;
  letter-spacing: 1px;
}

.footer-column p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f8f8f8;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.footer-logo img {
  width: 120px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
}

.footer-logo h2 {
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 2px;
  font-weight: 600;
}

/* --- BAGIAN BAWAH --- */
.footer-bottom {
  background-color: #fff;
  padding: 15px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom-left p {
  font-size: 0.9rem;
  color: #000;
  margin: 0;
}

.footer-bottom-right {
  display: flex;
  gap: 20px;
}

.footer-bottom-right a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.footer-bottom-right a:hover {
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
  }

  .footer-column {
    text-align: center;
  }

  .footer-logo img {
    width: 100px;
  }

  .footer-logo h2 {
    font-size: 1.1rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-bottom-right {
    justify-content: center;
  }
}




/* ===== HERO ===== */
.hero { width: 100%; height: 70vh; margin-top: 250px; overflow: hidden; }
.hero-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(60%); }


/* === GAMBAR DI KANAN === */
.about-image {
  flex: 1.1;
  display: flex;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.02);
}

/* === RESPONSIF === */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    gap: 40px;
  }

  .about-text {
    padding: 10px 20px;
  }

  .about-text .about-logo-top {
    padding: 20px;
    width: 120px;
    margin-bottom: 20px;
  }

  .about-image img {
    width: 100%;
    max-width: 500px;
  }
}
/* ===== SIDEBAR ===== */
.sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100vh;
  background: linear-gradient(160deg, #1e1e1e 0%, #2d2d2d 100%);
  backdrop-filter: blur(12px);
  color: #fff;
  transition: left 0.35s ease-in-out;
  z-index: 1500;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* penting: bagi area atas dan tombol bawah */
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.4);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.sidebar.open {
  left: 0;
}

/* ===== HEADER ===== */
.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
}
.sidebar-header h2 {
  font-size: 20px;
  letter-spacing: 1px;
  color: #d4b483;
}
.close-btn {
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  transition: 0.2s;
}
.close-btn:hover {
  color: #d4b483;
  transform: rotate(90deg);
}

/* ===== MENU ===== */
.sidebar ul {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sidebar ul li a {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 17px;
  letter-spacing: 0.5px;
  font-weight: 400;
  transition: color 0.25s, padding-left 0.25s;
}
.sidebar ul li a:hover {
  color: #d4b483;
  padding-left: 8px;
}

/* ===== BOOK NOW di tengah ===== */
.sidebar-book-now {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}
.book-now {
  display: inline-block;
  background: linear-gradient(135deg, #d4b483, #b98a55);
  color: #1e1e1e;
  padding: 14px 40px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(212, 180, 131, 0.4);
  transition: all 0.3s ease;
}
.book-now:hover {
  background: #fff;
  color: #a37c48;
  transform: scale(1.08);
  box-shadow: 0 6px 25px rgba(212, 180, 131, 0.6);
}

/* ===== MENU TOGGLE ===== */
.menu-toggle { display: none; flex-direction:column; gap:6px; cursor:pointer; z-index:1600; }
.menu-toggle span { width: 28px; height: 3px; background: #fff; border-radius:2px; transition: .22s; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .menu-toggle { display: flex; }
  .navbar-left, .navbar-right, .navbar-bottom { display: none; }
  .navbar-middle { top: 30%; }
  .hero { margin-top: 200px; height: 72vh; }
  .about { padding: 60px 28px; }
  .about-container { flex-direction: column; gap: 28px; }
}

@media (max-width: 600px) {
  .hero { height: 90vh; margin-top: 160px; }
  .sidebar { width: 82%; }
  .navbar-logo img { max-width: 90px; }
}
/* ========== RESPONSIVE SETTINGS ========== */
/* ==== PERBAIKAN NAVBAR RESPONSIVE FINAL ==== */

/* Tampilan mobile & tablet */
@media (max-width: 992px) {
  /* Struktur utama navbar */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: #1b3528;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
  }

  /* Hilangkan bagian desktop */
  .navbar-top,
  .navbar-left,
  .navbar-right,
  .navbar-bottom,
  .navbar-right-scrolled {
    display: none !important;
  }

  /* Logo di tengah */
  .navbar-middle {
    position: relative;
    transform: none;
    top: 0;
    left: 0;
    text-align: center;
  }

  .navbar-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .navbar-logo img {
    width: 80px;
    margin-bottom: 4px;
  }

  .navbar-logo h1 {
    font-size: 22px;
    letter-spacing: 3px;
    color: #fff;
  }

  .navbar-logo p {
    font-size: 10px;
    color: #c8a87a;
    letter-spacing: 4px;
  }

  /* Tombol hamburger kiri atas */
  .menu-toggle {
    display: flex !important;
    position: absolute;
    top: 25px;
    left: 25px;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1500;
  }

  .menu-toggle span {
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Sidebar */
  .sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100vh;
    background: rgba(27, 53, 40, 0.97);
    backdrop-filter: blur(8px);
    color: #fff;
    transition: left 0.35s ease;
    z-index: 1400;
    padding: 80px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .sidebar.open {
    left: 0;
  }

  .sidebar h2 {
    color: #c8a87a;
    font-size: 20px;
    margin-bottom: 20px;
  }

  .sidebar a {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.3s, padding-left 0.3s;
  }

  .sidebar a:hover {
    color: #c8a87a;
    padding-left: 6px;
  }

  /* Hero offset supaya tidak ketimpa navbar */
  .hero {
    margin-top: 130px;
  }
}

/* Layar kecil <600px */
@media (max-width: 600px) {
  .navbar {
    height: 110px;
  }

  .navbar-logo img {
    width: 65px;
  }

  .navbar-logo h1 {
    font-size: 18px;
  }

  .navbar-logo p {
    font-size: 8px;
  }

  .sidebar {
    width: 85%;
  }
}
/* ===== PERBAIKAN TINGGI NAVBAR (biar "GROUP" kebaca) ===== */
@media (max-width: 992px) {
  .navbar {
    height: 145px !important; /* dari 120px naik jadi 145px */
  }

  .navbar-logo img {
    width: 85px; /* sedikit lebih besar agar proporsional */
  }

  .navbar-logo h1 {
    font-size: 22px;
    margin-bottom: 3px;
  }

  .navbar-logo p {
    font-size: 16px;
    letter-spacing: 4px;
    margin-top: 2px;
    color: #c8a87a;
  }

  /* Sesuaikan hero agar tidak ketimpa navbar */
  .hero {
    margin-top: 145px !important;
  }

  /* Turunkan hamburger dikit supaya seimbang */
  .menu-toggle {
    top: 60px !important;
  }
}



