/* ===== 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;
}

.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 ===== */
.login-btn {
  background-color: #c8a87a;
  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;
}
.login-btn: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 .login-btnw {
  background-color: #c8a87a;
  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 .login-btn:hover {
  background-color: #fff;
  transform: scale(1.05);
}

.profile-link img {
  width: 50px;           /* ukuran sedikit lebih besar */
  height: 50px;
  border-radius: 50%;    /* tetap bulat */
  object-fit: cover;
  transition: transform 0.2s ease;
  position: relative;
  top: 20px;              /* geser logo sedikit ke bawah */
}

.profile-link img:hover {
  transform: scale(1.1); /* efek hover */
}

/* ===== 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;
}

.rooms-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;
}

.rooms-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;
  }

  .rooms-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;
}

.login-container {
  width: 300px;
  margin: 100px auto;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.login-container h2 {
  text-align: center;
  margin-bottom: 20px;
  font-family: "Rye", cursive;
}

.login-container input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.login-container button {
  width: 100%;
  padding: 10px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.error {
  color: red;
  text-align: center;
  margin-bottom: 10px;
}


/* ===== 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%); }

/* ===== ABOUT ===== */
.about {
  padding: 80px 50px;
  background: #f8f8f8;
}

.about-container {
  display: flex;
  gap: 60px; /* tambahkan jarak antar canvas dan gambar */
  align-items: center; /* bikin sejajar secara vertikal */
  max-width: 1100px;
  margin: 0 auto;
}

/* === KOTAK TEKS (CANVAS) === */
.about-text {
  flex: 0.9;
  background: #fff;
  border-radius: 14px;
  padding: 35px 35px; /* kurangi padding atas */
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* === LOGO === */
.about-text .about-logo-top {
  width: 120px;
  margin: 0 auto 35px auto; /* dari 15px jadi 25px */
  display: block;
}


/* === JUDUL DAN TEKS === */
.about-text h2 {
  color: #a37c48;;
  font-size: 26px;
  margin-bottom: 12px;
}


.about-text p {
  line-height: 1.8;
  color: #333;

}

/* === 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 FINAL ===== */
.sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 75%;
  height: 100vh;
  background: #1b3528; /* sama warna dengan navbar */
  color: #fff;
  transition: left 0.35s ease;
  z-index: 1500;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
  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: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sidebar ul li a {
  color: #fff;
  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;
}

/* ===== BAGIAN BAWAH (BOOK NOW, PROFILE, LOGOUT) ===== */
.sidebar-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  gap: 15px;
}

.sidebar-bottom .book-now {
  background: linear-gradient(135deg, #d4b483, #b98a55);
  color: #1b3528;
  padding: 12px 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;
}

.sidebar-bottom .book-now:hover {
  background: #fff;
  color: #a37c48;
  transform: scale(1.08);
}

.sidebar-profile-img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 3px solid #d4b483;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.sidebar-profile-img:hover {
  transform: scale(1.08);
  border-color: #b98a55;
}

.logout-link {
  display: inline-block;
  background: #d4b483;
  color: #1b3528;
  padding: 10px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.logout-link:hover {
  background: #fff;
  color: #a37c48;
  transform: scale(1.05);
}
/* blur background */
#blurOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 5000; /* lebih tinggi dari navbar */
  display: none;
}
/* canvas popup */
#bookingCanvas {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 400px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  z-index: 6000; /* LEBIH TINGGI dari overlay dan navbar */
  display: none;
}
/* untuk mobile */
@media (max-width: 480px) {
  #bookingCanvas {
    width: 95%;             /* full hampir seluruh layar */
    padding: 20px;
    border-radius: 12px;
  }

  #bookingCanvas h2 {
    font-size: 20px;
  }

  #bookingCanvas input,
  #bookingCanvas select {
    padding: 10px;
  }

  #bookingCanvas button {
    padding: 10px;
    font-size: 15px;
  }
}

#bookingCanvas h2 {
  text-align: center;
  margin-bottom: 20px;
}

#bookingCanvas label {
  font-weight: bold;
  display: block;
  margin-top: 10px;
}

#bookingCanvas input,
#bookingCanvas select {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

#bookingCanvas button {
  width: 100%;
  margin-top: 15px;
  padding: 12px;
  background: #000;
  color: #fff;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

#closeCanvas {
  position: absolute;
  top: 10px; 
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}



/* ===== 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;
  }
}



