/* (same as defined in previous attempt) */
:root{
  --ks-yellow:#ffdd4f;
  --bg-dark:#0b0b0c;
  --card-dark:#17181c;
  --text-dark:#e5e7eb;
  --muted-dark:#9aa3b2;
  --ring: rgba(255,221,79,0.5);

  --bg-light:#fafafa;
  --card-light:#ffffff;
  --text-light:#111827;
  --muted-light:#4b5563;
  --border-light:#e5e7eb;
  --border-dark:#23252d;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
html[data-theme="dark"] body{background:var(--bg-dark);color:var(--text-dark)}
html[data-theme="light"] body{background:var(--bg-light);color:var(--text-light)}
body{margin:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif}
a{text-decoration:none}
html[data-theme="dark"] a{color:var(--ks-yellow)}
html[data-theme="light"] a{color:#7a5c00}
.container{max-width:1160px;margin:0 auto;padding:0 20px}
header{position:sticky;top:0;z-index:50;background:rgba(11,11,12,0.75);backdrop-filter:saturate(160%) blur(10px);border-bottom:1px solid #1f2937}
html[data-theme="light"] header{background:rgba(255,255,255,0.75);border-bottom-color:var(--border-light)}
.nav{display:flex;align-items:center;justify-content:space-between;padding:12px 0}
.brand{display:flex;gap:10px;align-items:center}
.logo{width:36px;height:36px;border-radius:10px;background:linear-gradient(135deg,var(--ks-yellow),#fff3a0);display:grid;place-items:center;color:#1f2937;font-weight:800}
.brand h1{font-size:16px;margin:0;font-weight:800;letter-spacing:.2px}
.btn{display:inline-flex;align-items:center;gap:10px;border:1px solid #30323a;padding:10px 14px;border-radius:12px;background:#121318;color:#f3f4f6;font-weight:700;cursor:pointer;transition:transform .12s ease}
.btn:hover{transform:translateY(-1px)}
.btn.primary{background:var(--ks-yellow);color:#111;border-color:#111}
html[data-theme="light"] .btn{background:#fff;color:#111;border-color:var(--border-light)}
.panel, .card{border-radius:16px;padding:18px;border:1px solid var(--border-dark);background:var(--card-dark)}
html[data-theme="light"] .panel, html[data-theme="light"] .card{border-color:var(--border-light);background:var(--card-light)}
.muted{color:var(--muted-dark)}
html[data-theme="light"] .muted{color:var(--muted-light)}
.hero{position:relative;padding:72px 0 48px;border-bottom:1px solid #1f2937;background:radial-gradient(1200px 500px at 50% -100px,rgba(255,221,79,.10),transparent)}
.hero h2{font-size:40px;line-height:1.1;margin:0 0 12px;font-weight:900}
.hero p{color:#cbd5e1;max-width:720px}
.cta{display:flex;gap:12px;margin-top:18px;flex-wrap:wrap}
.section{padding:48px 0;border-bottom:1px solid #1f2937}
.section h3{font-size:28px;margin:0 0 18px;font-weight:800}
.grid{display:grid;grid-template-columns:repeat(12,1fr);gap:18px}
.card{grid-column:span 12;display:flex;flex-direction:column;gap:10px}
@media(min-width:768px){.card{grid-column:span 3}}
.price{font-weight:800;color:var(--ks-yellow);font-size:18px}
.card.selectable{cursor:pointer;border-width:2px;transition:box-shadow .15s ease, transform .06s ease}
.card.selectable:hover{transform:translateY(-1px)}
.card.active{box-shadow:0 0 0 3px var(--ring) inset}
.booking{display:grid;grid-template-columns:1fr;gap:18px}
@media(min-width:980px){.booking{grid-template-columns:1.2fr .8fr}}
label{display:flex;align-items:center;gap:8px;font-size:13px;margin:10px 0 6px}
.icon{width:16px;height:16px;display:inline-block;flex:0 0 16px;color:var(--ks-yellow)}
.icon svg{width:16px;height:16px;display:block;fill:var(--ks-yellow)}
html[data-theme="dark"] label, html[data-theme="dark"] .btn, html[data-theme="dark"] h3, html[data-theme="dark"] h4{color:#f1f5f9}
html[data-theme="light"] label, html[data-theme="light"] .btn, html[data-theme="light"] h3, html[data-theme="light"] h4{color:#111}
input,select,textarea{width:100%;padding:12px 12px;border-radius:10px;outline:none}
html[data-theme="dark"] input, html[data-theme="dark"] select, html[data-theme="dark"] textarea{background:#0e0f13;border:1px solid #2a2c35;color:#f8fafc}
html[data-theme="light"] input, html[data-theme="light"] select, html[data-theme="light"] textarea{background:#fff;border:1px solid var(--border-light);color:#111}
input:focus,select:focus,textarea:focus{box-shadow:0 0 0 3px var(--ring);border-color:var(--ks-yellow)}
.row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.summary{position:sticky;top:84px}
.summary .line{display:flex;justify-content:space-between;margin:6px 0}
.total{font-size:22px;font-weight:900;color:var(--ks-yellow)}
.badge{display:inline-flex;align-items:center;gap:6px;padding:6px 10px;border-radius:999px;border:1px dashed #30323a}
html[data-theme="light"] .badge{border-color:var(--border-light)}
.qrwrap{background:#0e0f13;border:1px solid #2a2c35;border-radius:12px;display:grid;place-items:center;padding:8px}
html[data-theme="light"] .qrwrap{background:#fff;border-color:var(--border-light)}
footer{padding:28px 0}
.map{width:100%;height:240px;border:0;border-radius:12px}


/* Hero banner */
.banner-img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:16px;
  margin:16px 0 6px;
  border:1px solid var(--border-dark);
}
html[data-theme="light"] .banner-img{ border-color:var(--border-light); }


/* Hero banner with overlay CTAs */
.hero-banner{position:relative;border-radius:16px;overflow:hidden;border:1px solid var(--border-dark);margin-top:12px}
html[data-theme="light"] .hero-banner{border-color:var(--border-light)}
.hero-banner .banner-img{display:block;width:100%;height:360px;object-fit:cover}
.hero-cta{position:absolute;left:16px;bottom:16px;display:flex;gap:10px;flex-wrap:wrap}
@media(min-width:980px){.hero-banner .banner-img{height:420px}}



}


/* Improve subheading contrast in both themes */
html[data-theme="dark"] .hero p{ color:#cbd5e1; }
html[data-theme="light"] .hero p{ color:#4b5563; } /* darker gray for light mode */


/* Improve button readability/contrast across themes */
html[data-theme="dark"] .btn{
  background:#121318;
  color:#f8fafc;
  border-color:#2a2c35;
}
html[data-theme="light"] .btn{
  background:#ffffff;
  color:#1f2937;
  border-color:var(--border-light);
}
/* Primary stays high-contrast on brand yellow */
.btn.primary{ background:var(--ks-yellow); color:#111 !important; border-color:#111; }

/* Focus ring for accessibility */
.btn:focus-visible{
  outline:none;
  box-shadow:0 0 0 3px var(--ring);
}


/* Header nav buttons: no underline; strong contrast in both themes */
header .btn, header .btn:visited{ text-decoration:none; }
header .btn:hover{ text-decoration:none; filter:brightness(0.97); }
header .btn:active{ transform:scale(0.98); }

/* Ensure all .btn variants never show underlines */
.btn, .btn:visited, .btn:hover, .btn:active{ text-decoration:none; }

.hero .banner-img{object-position:center center}


/* Footer Socials visibility */
.footer-socials{
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
  margin-top:8px;
}
html[data-theme="dark"] .footer-socials a{ color: var(--ks-yellow); }
html[data-theme="light"] .footer-socials a{ color: #7a5c00; }
.footer-socials a:hover{ text-decoration: underline; }


/* What's included popovers */
.inc-link{
  background:transparent;border:1px dashed var(--border-light);
  padding:6px 10px;border-radius:999px;cursor:pointer;font-weight:700;
}
html[data-theme="dark"] .inc-link{ border-color: var(--border-dark); color: var(--ks-yellow); }
html[data-theme="light"] .inc-link{ color:#7a5c00; }
.inc-popover{ position: fixed; inset:0; display:none; align-items:center; justify-content:center; background: rgba(0,0,0,.45); z-index: 60; }
.inc-popover[aria-hidden="false"]{ display:flex; }
.inc-card{ background: var(--panel-dark); color: var(--text-dark); border:1px solid var(--border-dark); border-radius: 16px; padding: 16px; width: min(520px, 92vw); box-shadow: 0 10px 30px rgba(0,0,0,.35); }
html[data-theme="light"] .inc-card{ background: var(--panel-light); color: var(--text-light); border-color: var(--border-light); }
.inc-head{ font-weight: 900; margin-bottom: 8px; }
.inc-list{ margin:0 0 12px 18px; }
.inc-list li{ margin: 6px 0; }
.inc-close{ align-self:flex-end }
