:root{
  --accent: #e2b94b;         /* your brand accent */
  --muted: #71767a;
  --bg: #fafafa;
  --card: #ffffff;
  --radius: 12px;

  /* thumbnail settings */
  --thumb-w: 150px;
  --thumb-h: 110px;
  --gap: 10px;
  --visible-count: 5;
}

/* Reset & base */
* { box-sizing: border-box; }
html,body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  /* background: var(--bg); */
  background-color: #20232c;
  color: #f0f0f0;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height: 1.45;
  padding-bottom: 40px;
}

a { color: inherit; text-decoration:none; }

/* Page container */
.page {
  width: 95%;
  max-width: 1200px;
  margin: 28px auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

/* HERO */
.hero1 {
  grid-column: 1 / -1;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 400px;
  background: linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.02));
  box-shadow: 0 8px 30px rgba(2,6,23,0.06);
}
.hero1 .hero1-img { width:100%; height:420px; object-fit:cover; display:block; }
.hero1 .overlay {
  position: absolute;
  inset: 0;
  display:flex;
  align-items:flex-end;
  padding: 20px;
  background: linear-gradient(0deg, rgba(0,0,0,0.45), transparent 40%);
}
.hero1 .meta {
  color: #fff;
  max-width: 920px;
  backdrop-filter: blur(2px);
}
.title {
  font-size: 22px;
  font-weight: 700;
  margin: 2px 0 6px;
}
.sub {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  display:flex;
  gap:12px;
  align-items:center;
}
.badge {
  background: #fff;
  color:#e2b94b; 
  padding: 6px 10px;
  border-radius: 999px;
  font-weight:600;
  display:inline-flex;
  gap:8px;
  align-items:center;
}

/* Main / Right columns */
.content{
  background: transparent;
}
.card {
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 6px 20px;
}

/* Two-column top: left content large */
.top {
  display:flex;
  gap: 20px;
  align-items:flex-start;
}
.left {
  flex: 1;
}
.right {
  width: 360px;
  position: sticky;
  top: 24px;
  height: fit-content;
}

 .main-large{
    width: 90%;
    border-radius: 25px;
}

/* hero gallery left */
.gallery {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.hero {
  border-radius:12px;
  overflow:hidden;
  background:#0b0d0f;
  height:420px;
  position:relative;
}
.hero img { width:100%; height:100%; object-fit:cover; display:block; transition: transform .6s ease; }
.hero .overlay {
  position:absolute; inset:0; pointer-events:none;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.35));
}

/* gallery controls */
.thumb-row { display:flex; gap:12px; align-items:center; margin-top:12px; 
  /* width sized to show exactly (--visible-count) thumbnails (incl gaps) */
  max-width: calc((var(--thumb-w) * var(--visible-count)) + (var(--gap) * (var(--visible-count) - 1)));
}
.thumb-wrapper { display:flex; align-items:center; gap:10px; width:100%; }
.thumbs {
  display:flex; gap:12px; overflow:hidden; width:100%; align-items:center;
}
.thumb {
  flex:0 0 auto; width:120px; height:80px; border-radius:10px; overflow:hidden;
  border:3px solid transparent; cursor:pointer; transition:transform .15s ease, border-color .15s;
}
.thumb img { width:100%; height:100%; object-fit:cover; display:block; }
.thumb.active { border-color:var(--accent); transform:scale(1.03); box-shadow:0 8px 22px rgba(0,0,0,0.5); }

.thumb-btn {
  background: rgba(255,255,255,0.04); border: none; color:var(--muted);
  width:42px; height:42px; border-radius:50%; cursor:pointer; display:flex; align-items:center; justify-content:center;
}
.thumb-btn:active{ transform:translateY(1px); }
.thumb-progress {height:6px; background:rgba(255,255,255,0.05); border-radius:6px; margin-top:10px; overflow:hidden;}
.thumb-progress > i { display:block; height:100%; width:0%; background: linear-gradient(90deg,var(--accent), #f0d47a); transition: width 400ms linear; }

/* Booking card */
.booking-card {border-radius: 12px;padding: 16px;display:flex;flex-direction:column;gap:12px;}
.price-row { display:flex; justify-content:space-between; align-items:center; gap:10px; }
.price-row .price { font-size:20px; font-weight:800; }
.per-night { font-weight:600; font-size:13px; }

.book-form label { display:block; font-size: 13px; margin-bottom:6px;}
.inputs-row { display:flex; gap:10px; margin-bottom:12px; }
.inputs-row .col { flex:1; }
input[type="date"], select, input[type="number"], input[type="text"], input[type="email"], input[type="tel"], textarea {width:100%; padding:10px; border-radius:8px; border:1px solid #ddd; font-size:14px; box-sizing:border-box;}
.small { font-size:13px; color:var(--muted); margin-top:6px; }

.summary {border:1px solid #eee; padding:10px; border-radius:8px; margin-top:12px; }
.summary div { display:flex; justify-content:space-between; font-size:14px; padding:4px 0; }
.summary .total { font-weight:700; font-size:16px; }

.reserve-btn {width:100%; background:var(--accent); color:#fff; background: #e2b94b; border:none; padding:12px; font-size:16px; font-weight:700; border-radius:8px; cursor:pointer; margin-top:12px; }

.reserve-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(226,185,75,0.12); }
.reserve-btn:disabled { opacity:.6; cursor:not-allowed; transform:none; box-shadow:none; }

meta { margin-top:12px; font-size:13px; color:var(--muted); }
.consent { display:flex; align-items:center; gap:10px; margin-top:8px; }

.success-toast, .error-toast {
  position: fixed; right: 20px; bottom: 20px; padding:12px 16px; border-radius:8px; color:#fff; box-shadow:0 6px 18px rgba(0,0,0,0.12);
  display:none; z-index:1000;
}
.success-toast { background: #2b8a3e; }
.error-toast { background: #c43e3e; }


/* Contact / Host */
.host {
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:12px;
}
.host img { width:56px; height:56px; border-radius:999px; object-fit:cover; border:2px solid #fff; box-shadow:0 6px 18px rgba(0,0,0,0.06); }
.contact-host {
  background: #25d366; /* whatsapp green */
  color: #fff;
  border: none;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  font-weight:700;
  display:inline-flex;
  gap:8px;
  align-items:center;
}

/* Reviews */
.reviews { margin-top:18px; display:flex; flex-direction:column; gap:12px; }
.review { padding:12px; border-radius:10px; box-shadow:0 6px 18px ; }
.stars { color: #f7b500; font-weight:700; }

/* Map */
.map {
  margin-top: 15px;
  border-radius: 12px;
  overflow: hidden;
}

iframe {
  width: 100%;
  height: 200px;
  border: none;
}

/* Lightbox */
.lightbox {
  position: fixed; inset:0; display:none; align-items:center; justify-content:center;
   z-index: 2000;
}
.lightbox .lb-img { max-width: 92%; max-height: 86%; border-radius:10px; object-fit:contain; }


/* Mobile adjustments */
@media (max-width: 992px)   {
  .page { grid-template-columns: 1fr; padding-bottom: 90px; width: auto; max-width: 98%;}
  .hero1 .hero1-img { height: 300px; }
  .main-large{
    width: 90%;
  }
  .right { position: static; width:100%; }
  :root{--visible-count: 4;}
}   
.mobile-book {
  display: none;
}
@media (max-width:768px){
   :root {--visible-count:3;}
   .page { grid-template-columns: 1fr; padding-bottom: 90px; width: auto; max-width: 90%;}
   .mobile-book { display:flex; position:fixed; left:0; right:0; bottom:12px; margin:0 6px; z-index:200; justify-content:center; }
   .mobile-book .reserve-btn { width: calc(100% - 24px); border-radius:14px; font-size:16px; padding:14px; }
}
@media (max-width:576px){:root{--visible-count: 2;}}

/* Floating WhatsApp Container */
#whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    font-size: 30px;
    transition: transform 0.2s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Popup Text */
.whatsapp-text {
    background: #fff;
    color: #333;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    font-family: Arial, sans-serif;
    white-space: nowrap;
    opacity: 0; /* start hidden */
    transform: translateX(20px); /* slide-in effect */
    animation: slideIn 0.8s forwards;
}

/* Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
