/* ===== Hero baru seperti contoh gambar ===== */

/* Override aturan di header.css yang memasang gambar & height di body */

/* Warna tombol */
:root {
  --amber: #f59e0b; /* oranye */
  --amber-600: #d97706;
  --header-h: 60px;
}

/* Section hero dengan gambar di belakang + overlay gelap */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/hero.jpg") center/cover no-repeat;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55));
  z-index: 0;
}

/* Konten hero */
.hero__content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 96px 16px;
  max-width: 1100px;
  margin-inline: auto;
}

.hero__title {
  font-size: clamp(36px, 7.5vw, 78px);
  font-weight: 800;
  letter-spacing: 0.3px;
  margin: 0 0 10px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.25);
}

.hero__subtitle {
  font-size: clamp(14px, 2.2vw, 20px);
  font-weight: 400;
  opacity: 0.95;
  margin: 0 0 26px;
}

/* Tombol seperti contoh: oranye solid + outline */
.cta-group {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-amber {
  background: var(--amber);
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.btn-amber:hover {
  background: var(--amber-600);
  transform: translateY(-1px);
}

.btn-outline-amber {
  background: transparent;
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--amber);
  transition: transform 0.15s ease, background 0.2s ease;
}

.btn-outline-amber:hover {
  background: rgba(245, 158, 11, 0.12);
  transform: translateY(-1px);
}

.site-header .navbar {
  height: var(--header-h);
}

@supports (height: 100svh) {
  .hero {
    min-height: 100svh;
  }
}

/* kalau header lebih tinggi saat mobile, atur variabelnya */
@media (max-width: 992px) {
  :root {
    --header-h: 70px;
  } /* contoh, sesuaikan kalau menu bertambah tinggi */
}
@media (max-width: 560px) {
  .hero__content {
    padding: 72px 16px;
  }
}
/* ===== Section title centered (About / Rooms & Rates style) ===== */
.section--muted {
  background: #fff;
} /* abu tipis seperti preview */
.section-title {
  text-align: center;
  margin: 0 auto 28px;
  padding-top: 32px;
}
.section-title h2 {
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 800;
  letter-spacing: 0.5px;
  margin: 0 0 8px;
}
.section-title p {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
}
/* garis tipis dekoratif di bawah judul (opsional) */
@media (max-width: 560px) {
  .section-title {
    padding-top: 24px;
  }
}
/* ====== ROOMS & RATES Cards ====== */
.rooms .grid-cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;

  /* lebar & gutter */
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);

  /* ✅ beri jarak dengan footer */
  margin-block-end: clamp(32px, 6vw, 96px);
}


@media (max-width: 1024px) {
  .rooms .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .rooms .grid-cards {
    grid-template-columns: 1fr;
  }
}

.room-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.22s ease,
    border-color 0.22s ease;
}
.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px rgba(2, 132, 199, 0.12);
  border-color: #dbeafe;
}

.room-thumb {
  aspect-ratio: 16/9;
  background: #f8fafc;
  overflow: hidden;
}
.room-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.room-card:hover .room-thumb img {
  transform: scale(1.06) rotate(0.2deg);
}

.room-body {
  padding: 16px 16px 18px;
}
.room-name {
  margin: 2px 0 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.room-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.room-rate .price {
  color: #0ea5e9;
  font-weight: 800;
}
.room-rate small {
  color: #64748b;
  margin-left: 4px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  font-size: 13px;
  line-height: 1;
}
.chip svg {
  display: block;
  color: #475569;
}

/* tombol kecil untuk dalam card */
.btn-sm {
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
}
.btn-amber {
  background: #f59e0b;
  color: #fff;
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.18);
}
.btn-amber:hover {
  background: #d97706;
  transform: translateY(-1px);
}

/* Section title (center) – bila belum ada */
.section-title {
  text-align: center;
  margin: 0 auto 24px;
}
.section-title h2 {
  font-weight: 800;
}
.section-title p {
  color: #64748b;
  max-width: 720px;
  margin: 0 auto;
}
.room-card:focus-within {
  outline: 3px solid #93c5fd;
  outline-offset: 2px;
}
@media (max-width: 560px) {
  .room-line {
    flex-wrap: wrap;
  }
  .btn-sm {
    width: 100%;
  }
}
/* ===== End of Rooms & Rates Cards ===== */

/* ---- Simple Banner Box (.bvb-*) ---- */

.banner-container {
  align-items: center;
  width: 99vw;
  margin-left: calc(50.4% - 50vw);
  margin-right: calc(50% - 50vw);

  /* jarak tepi kecil biar tak mentok layar */
  padding-inline: clamp(8px, 2vw, 16px);

  display: block; 
}

.banner-container .banner {
  width: 100%;               /* bentangkan isi mengikuti container di atas */
  background: linear-gradient(-55deg, #f59e0b 29%, #d97706 29.1%, #d97706 68%, #f59e0b 68.1%);
  border-radius: 12px;
  /* hapus margin lama agar benar-benar full (kita sudah pakai padding pada container) */
  margin-top: 20px;

  display: flex;
  flex-wrap: wrap;
  box-shadow: 0 5px 10px #0005;
  overflow: hidden;
}

.banner-container .banner .hotels{
  flex: 1 1 250px;
  padding: 15px;
  text-align: center;
}

.banner-container .banner .hotels img{
  width: clamp(140px, 26vw, 260px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin-inline: auto;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  outline: 6px solid rgba(255,255,255,.85);
  outline-offset: -2px;
}

.banner-container .banner .b-content {
  flex: 1 1 250px;
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
}

.banner-container .banner .b-content span{
  color: #eee;
  font-size: 25px;
}

.banner-container .banner .b-content h3{
  color: #fff;
  font-size: 40px;
}

.banner-container .banner .b-content p{
  color: #eee;
  font-size: 20px;
  padding: 10px 0;
}

.banner-container .banner .b-content .b-btn{
  display: block;
  height: 40px;
  width: 150px;
  line-height: 40px;
  background: #fff;
  color: #d63031;
  margin: 5px auto;
  text-decoration: none;
}

.banner-container .banner .deskgirl{
  flex: 1 1 250px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center; 
}

.banner-container .banner .deskgirl img{
  width: clamp(140px, 26vw, 260px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
    outline: 6px solid rgba(255,255,255,.85);
  outline-offset: -2px;
}

@media (max-width:768px) {
  .banner-container .banner .deskgirl {
    display: none;
  }
}

/* ===== Special Offers (so-*) — versi compact ===== */
.so{
  padding: clamp(8px, 3.2vw, 20px) 0;
  margin-top: 25px;
  margin-bottom: 25px;
}
.so-wrap{
  max-width: 1080px;
  margin-left: clamp(16px, 4vw, 32px);
  margin-right: auto;
  padding-right: clamp(12px, 3vw, 24px);
}

.so-head h2{
  margin: 0 0 4px;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 800;
}
.so-head p{
  margin: 0 0 12px;
  color: #64748b;
  font-size: clamp(13px, 1.6vw, 14.5px);
}

/* Grid lebih rapat */
.so-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: clamp(12px, 2vw, 16px);
}
@media (max-width:1024px){ .so-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:640px){  .so-grid{ grid-template-columns: 1fr; } }

/* Card lebih kecil */
.so-card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  border:1px solid #e5e7eb;
  box-shadow: 0 6px 18px rgba(2,6,23,.06);
  transition: transform .16s ease, box-shadow .2s ease, border-color .2s ease;
}
.so-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(2,6,23,.10);
  border-color:#dbeafe;
}

/* Media: tetap 16:9 agar tidak terlalu tinggi */
.so-media{
  aspect-ratio: 16 / 9;
  background:#f1f5f9;
  overflow:hidden;
}
.so-media img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .45s ease;
}
.so-card:hover .so-media img{ transform: scale(1.04); }

/* Body lebih ringkas */
.so-body{
  padding: 14px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.so-title{
  margin:0;
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 800;
  letter-spacing:.2px;
}
.so-desc{
  margin:0; color:#475569;
  font-size: clamp(13px, 1.6vw, 14.5px);
  display:-webkit-box; -webkit-box-orient:vertical; overflow:hidden;
  -webkit-line-clamp: 3;           /* ringkas */
  min-height: 3.1em;               /* menjaga tinggi seragam */
}
/* Desktop makin ringkas: 2 baris */
@media (min-width: 1024px){
  .so-desc{ -webkit-line-clamp: 2; min-height: 2.6em; }
}

/* CTA lebih kecil */
.so-cta{
  margin-top:auto;
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  text-decoration:none; font-weight:700;
  background:#ecfeff; color:#0f766e;
  border:1px solid #c8f4ef; border-radius:10px;
  padding:10px 12px;
  font-size: 0.95rem;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.so-cta:hover{ background:#fff; border-color:#99e2db; transform: translateY(-1px); }
.so-cta i{ font-size: 1.1rem; line-height:1; }
.room-detail {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.room-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 2.5rem;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .room-detail-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.room-gallery {
  width: 100%;
}

.room-slider {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.room-slide {
  display: none;
}

.room-slide.is-active {
  display: block;
}

.room-slide img {
  width: 100%;
  display: block;
}

.room-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  cursor: pointer;
}

.room-slider-nav.prev { left: 16px; }
.room-slider-nav.next { right: 16px; }

.room-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.room-slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: #ddd;
  cursor: pointer;
}

.room-slider-dots .dot.is-active {
  background: #ffb100;
}

.room-info .breadcrumb {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  opacity: 0.7;
}

.room-info .breadcrumb a {
  color: inherit;
}

.room-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.room-price {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.room-price span {
  font-weight: 400;
  opacity: 0.7;
  margin-left: 0.25rem;
}

.room-capacity {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.amenities-heading {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.amenities-list {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
}

.amenities-list li {
  margin-bottom: 0.25rem;
}
/* Biar konten tidak mepet kiri/kanan */
#room-detail .container {
  max-width: 1200px;
  margin-inline: auto;       /* center */
  padding-inline: 1.5rem;    /* space kiri/kanan */
}

/* Grid dua kolom */
.room-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 2.5rem;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .room-detail-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  /* sedikit ekstra padding di HP kalau mau */
  #room-detail .container {
    padding-inline: 1.25rem;
  }
}

/* Gallery + slider */
.room-gallery {
  width: 100%;
}

.room-slider {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.room-slide {
  display: none;
}

.room-slide.is-active {
  display: block;
}

.room-slide img {
  width: 100%;
  display: block;
}

/* Tombol prev/next */
.room-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  cursor: pointer;
}

.room-slider-nav.prev { left: 16px; }
.room-slider-nav.next { right: 16px; }

/* Dots */
.room-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.room-slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: #ddd;
  cursor: pointer;
}

.room-slider-dots .dot.is-active {
  background: #ffb100;
}

/* Amenities di bawah gambar */
.room-amenities {
  margin-top: 1.75rem;
}

.amenities-heading {
  margin-bottom: 0.5rem;
}

.amenities-list {
  margin: 0;
  padding-left: 1.25rem;
}

.amenities-list li {
  margin-bottom: 0.25rem;
}

/* Kanan: info kamar */
.room-info .breadcrumb {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  opacity: 0.7;
}

.room-info .breadcrumb a {
  color: inherit;
}

.room-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.room-price {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.room-price span {
  font-weight: 400;
  opacity: 0.7;
  margin-left: 0.25rem;
}

.room-capacity {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.room-description {
  margin-bottom: 1.5rem;
}

/* Book Now di detail */
.room-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
}

/* Background halaman detail biar nggak full putih */
#room-detail {
  background: #f8fafc; /* abu-abu muda */
}

/* Section padding */
.room-detail {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Container tengah */
#room-detail .container {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* Card utama */
.room-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 2.5rem;
  align-items: flex-start;

  background: #ffffff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

@media (max-width: 768px) {
  .room-detail-grid {
    grid-template-columns: minmax(0, 1fr);
    padding: 1.5rem;
  }
}
.room-amenities {
  margin-top: 1.75rem;
}

.amenities-heading {
  margin-bottom: 0.5rem;
}

.amenities-list {
  margin: 0;
  padding-left: 1.25rem;
  column-count: 2;
  column-gap: 2rem;
}

.amenities-list li {
  margin-bottom: 0.25rem;
  break-inside: avoid;
}

@media (max-width: 768px) {
  .amenities-list {
    column-count: 1;
  }
}
.room-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.room-summary-card {
  background: #fff7e6;
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.room-price {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.room-price span {
  font-weight: 400;
  opacity: 0.7;
  margin-left: 0.25rem;
}

.room-capacity {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.room-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.room-description {
  margin-bottom: 1.5rem;
}

.room-desc-heading {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.room-gallery {
  display: flex;
  flex-direction: column;
}

.room-slider {
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .room-detail-grid {
    grid-template-columns: minmax(0, 1fr);
    padding: 1.5rem;
  }

  #room-detail .container {
    padding-inline: 1.25rem;
  }
}
@media (max-width: 768px) {
  .room-detail-grid {
    grid-template-columns: minmax(0, 1fr);
    padding: 1.5rem;
  }

  #room-detail .container {
    padding-inline: 1.25rem;
  }
}
.room-header {
  margin-bottom: 1.5rem;
}

.room-header .breadcrumb {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  opacity: 0.7;
}

.room-header .breadcrumb a {
  color: inherit;
}

.room-title {
  font-size: 1.8rem;
  margin-bottom: 0;
}

.room-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.75rem;
}

/* Biar di HP agak lebar / hampir full width */
@media (max-width: 768px) {
  .room-book-btn {
    width: 100%;
  }
}
/* Layout horizontal untuk price + button */
.room-summary-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.room-summary-main {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* Harga & kapasitas jadi rapat */
.room-summary-main .room-price {
  margin-bottom: 0;
}
.room-summary-main .room-capacity {
  margin-bottom: 0;
}

/* Tombol di pojok kanan, tanpa jarak atas */
.room-summary-card .room-book-btn {
  margin-top: 0;
}

/* Di mobile, susun vertikal + tombol full-width */
@media (max-width: 768px) {
  .room-summary-card {
    flex-direction: column;
    align-items: stretch;
  }

  .room-summary-card .room-book-btn {
    width: 100%;
  }
}
/* ===== Room detail – richer right column ===== */

.room-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.room-desc-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.room-ideal-for {
  font-size: 0.9rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 6px;
}

.room-ideal-for i {
  font-size: 1rem;
}

/* Meta kecil di bawah summary card */
.room-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem 1.25rem;
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
}

.room-meta-item {
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
}

.room-meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ca3af;
  display: block;
  margin-bottom: 0.15rem;
}

.room-meta-value {
  font-size: 0.9rem;
  color: #111827;
  font-weight: 500;
}

/* Highlights section */
.room-highlights {
  border-top: 1px dashed #e5e7eb;
  padding-top: 1.25rem;
}

.room-subheading {
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.room-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem 1.25rem;
}

.room-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.room-highlight-item i {
  font-size: 1.4rem;
  color: #f59e0b;
  margin-top: 0.05rem;
}

.room-highlight-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.room-highlight-text {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.5;
}

.room-highlights-note {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-top: 0.75rem;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .room-meta-grid,
  .room-highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .room-meta-grid,
  .room-highlights-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* ===== Fancy Book Now button inside room-summary-card ===== */
.room-summary-card .room-book-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  white-space: nowrap;  /* cegah "Book" dan "Now" terpisah baris */
  flex-shrink: 0;       /* jangan dikecilkan oleh flex container */
  padding: 0.85rem 1.9rem;
  border-radius: 999px;

  /* override btn-amber default */
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  border: none;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;

  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.45);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;

  transition:
    transform 0.18s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

/* highlight lembut di pojok kiri atas */
.room-summary-card .room-book-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.45), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.room-summary-card .room-book-btn i {
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.room-summary-card .room-book-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(245, 158, 11, 0.65);
}

.room-summary-card .room-book-btn:hover::before {
  opacity: 1;
}

.room-summary-card .room-book-btn:hover i {
  transform: translateX(3px);
}

/* mobile: tombol full width tapi tetap bentuk pill */
@media (max-width: 768px) {
  .room-summary-card .room-book-btn {
    width: 100%;
    justify-content: center;
  }
}

.booking-section {
  margin-top: 1rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: #f8fafc; /* sedikit abu supaya konten naik */
}

#room-booking .container {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr);
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .booking-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* KIRI: gambar & amenities */
.booking-room-thumb {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.booking-room-thumb img {
  display: block;
  width: 100%;
}
.booking-room-name {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}
.booking-room-capacity {
  margin-bottom: 1rem;
}
.booking-amenities h3 {
  margin-bottom: 0.5rem;
}
.booking-amenities ul {
  margin: 0;
  padding-left: 1.25rem;
}

/* KANAN: kartu booking */
.booking-card {
  position: relative;
  border: 2px dashed #e5e7eb;
  border-radius: 20px;
  padding: 1.75rem 1.5rem 1.5rem;
  background: radial-gradient(circle at 0% 0%, #fff7ed 0, #ffffff 55%) #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

/* dekorasi halus di pojok kanan atas */
.booking-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -30%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 30% 30%, rgba(249, 115, 22, 0.23), transparent 65%);
  opacity: 0.7;
  pointer-events: none;
}

/* badge kecil "Your stay..." */
.booking-card-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #fef9c3;
  color: #92400e;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.booking-card-label i {
  font-size: 1rem;
}

/* header: kapasitas + harga */
.booking-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.2rem;
}

.booking-header-main {
  flex: 1 1 auto;
}
.booking-capacity {
  font-weight: 600;
}
.booking-capacity i {
  margin-right: 0.35rem;
}
.booking-header-note {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: #6b7280;
}

.booking-price-box {
  text-align: right;
}
.booking-price {
  font-weight: 700;
  font-size: 1.3rem;
}
.booking-price span {
  font-weight: 400;
  opacity: 0.7;
  margin-left: 0.25rem;
}
.booking-price-note {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-top: 0.15rem;
}

/* form */
.booking-form .form-group {
  margin-bottom: 1rem;
}
.booking-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.booking-form input[type="text"],
.booking-form input[type="date"] {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 0.65rem 0.75rem;
  font-size: 0.95rem;
}

.booking-date-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.5rem;
}
.booking-date-row span {
  opacity: 0.6;
}

.booking-submit {
  cursor: pointer;
  width: 100%;
  margin-top: 0.5rem;
}

/* benefit kecil di bawah tombol */
.booking-benefits {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem 0.75rem;
}
.booking-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: #6b7280;
}
.booking-benefit-item i {
  font-size: 1rem;
  margin-top: 0.05rem;
  color: #f59e0b;
}

@media (max-width: 900px) {
  .booking-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .booking-benefits {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Alert */
.alert {
  border-radius: 12px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.alert-success {
  background: #ecfdf3;
  color: #166534;
}
.alert-error {
  background: #fef2f2;
  color: #b91c1c;
}
.alert-error ul {
  margin: 0;
  padding-left: 1.1rem;
}
/* Fix breadcrumb on room detail so text is not clipped */
.room-header .breadcrumb,
.room-info .breadcrumb {
  display: inline-block;   /* punya box sendiri */
  line-height: 1.4;        /* tinggi baris lebih lega */
  padding-top: 0.5rem;     /* sedikit ruang atas */
  padding-bottom: 0.1rem;  /* dan bawah */
}
