
:root{
  /* Brighter premium theme (gold on warm ivory) */
  --bg:#f6f3ec;
  --panel:#ffffff;
  --muted:#5d5d6a;
  --text:#191923;
  --gold:#d7b35b;
  --gold2:#f2d27a;
  --accent:#2aa3a1;
  --accent2:#ff7a59;
  --sky:#6aa9ff;
  --border:rgba(215,179,91,.28);
  --shadow: 0 18px 60px rgba(20,16,10,.18);
  --radius:18px;
  --max:1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  background:
    radial-gradient(900px 600px at 10% -12%, rgba(215,179,91,.22), transparent 60%),
    radial-gradient(900px 600px at 92% 8%, rgba(106,169,255,.20), transparent 58%),
    radial-gradient(900px 600px at 85% 85%, rgba(42,163,161,.14), transparent 60%),
    radial-gradient(700px 480px at 18% 78%, rgba(255,122,89,.10), transparent 58%),
    linear-gradient(180deg, #ffffff, var(--bg));
  color:var(--text);
  overflow-x:hidden;
}
a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.80);
  border-bottom:1px solid rgba(20,16,10,.10);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:12px; min-width:220px;
}
.brand img{
  height:clamp(58px, 4.4vw, 96px);
  width:auto;
  display:block;
  /* Keep the original gold finish (avoid yellowing via saturation filters) */
  filter: drop-shadow(0 10px 18px rgba(20,16,10,.18));
}

/* Mobile nav */
.navToggle{
  display:none;
  border:1px solid rgba(20,16,10,.14);
  background: rgba(255,255,255,.75);
  border-radius: 14px;
  padding:10px 12px;
  box-shadow: 0 10px 26px rgba(20,16,10,.10);
  cursor:pointer;
}
.navToggle:hover{border-color: rgba(215,179,91,.55)}

@media (max-width: 820px){
  .navToggle{display:inline-flex; align-items:center; justify-content:center}
  .nav{gap:10px}
  .navlinks{
    position:absolute;
    left:14px; right:14px;
    top:74px;
    background: rgba(255,255,255,.92);
    border:1px solid rgba(20,16,10,.12);
    border-radius: 18px;
    padding:10px;
    box-shadow: var(--shadow);
    display:none;
  }
  .nav.open .navlinks{display:flex}
  .navlinks{flex-direction:column; align-items:stretch}
  .navlinks a{justify-content:center; text-align:center}
}

/* Make the logo more apparent without breaking layout */
@media (min-width: 921px){
  .brand img{height:78px}
  .nav{padding:12px 0}
}

.heroLogo{
  width:min(360px, 85%);
  height:auto;
  display:block;
  margin:6px 0 12px;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.55));
}
.navlinks{display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-end}
.navlinks a{
  padding:10px 12px;
  border:1px solid transparent;
  border-radius:999px;
  color:rgba(25,25,35,.88);
}
.navlinks a:hover{
  border-color:rgba(215,179,91,.35);
  background: rgba(215,179,91,.10);
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px;
  background: rgba(215,179,91,.14);
  border:1px solid rgba(215,179,91,.30);
  border-radius:999px;
  color: #7a5b12;
  font-size:13px;
}
.hero{
  padding:56px 0 26px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:stretch;
}
@media (max-width: 920px){
  .heroGrid{grid-template-columns:1fr}
  .brand{min-width:auto}
}
.hTitle{
  font-size:44px;
  line-height:1.04;
  margin:14px 0 12px;
  letter-spacing:.2px;
}
.hLead{
  color:rgba(25,25,35,.72);
  font-size:16px;
  line-height:1.6;
  margin:0 0 18px;
}
.ctaRow{display:flex; gap:12px; flex-wrap:wrap; align-items:center}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(20,16,10,.12);
  background: rgba(255,255,255,.75);
  box-shadow: 0 8px 22px rgba(20,16,10,.12);
}
.btn:hover{border-color:rgba(215,179,91,.45)}
.btn.primary{
  background: linear-gradient(135deg, rgba(215,179,91,.95), rgba(242,210,122,.85), rgba(42,163,161,.55));
  color: #14100a;
  border-color: rgba(215,179,91,.55);
  box-shadow: 0 14px 34px rgba(215,179,91,.22);
}
.card{
  background: rgba(255,255,255,.78);
  border:1px solid rgba(20,16,10,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.tile{
  padding:18px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:12px;
  overflow:hidden;
  position:relative;
}
.tile:before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(520px 300px at 25% 10%, rgba(215,179,91,.20), transparent 62%);
  opacity:.9;
  pointer-events:none;
}
.tile h3{margin:0; font-size:20px; letter-spacing:.2px}
.tile p{margin:0; color:rgba(25,25,35,.70); line-height:1.55}
.tile .mini{display:flex; gap:10px; flex-wrap:wrap; margin-top:6px}
.tag{
  font-size:12px;
  color:rgba(25,25,35,.74);
  border:1px solid rgba(20,16,10,.12);
  border-radius:999px;
  padding:6px 10px;
  background: rgba(215,179,91,.08);
}
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
@media (max-width: 920px){
  .grid3{grid-template-columns:1fr}
}
.section{
  padding:18px 0 52px;
}
.section h2{
  margin:0 0 14px;
  font-size:22px;
}
.section .sub{
  margin:-6px 0 18px;
  color:rgba(25,25,35,.70);
  line-height:1.6;
}
.footer{
  border-top:1px solid rgba(20,16,10,.10);
  padding:22px 0 36px;
  color:rgba(25,25,35,.70);
}
.footerGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
}
@media (max-width:920px){.footerGrid{grid-template-columns:1fr}}
.small{font-size:13px; color:rgba(243,243,246,.68)}
.small{font-size:13px; color:rgba(25,25,35,.64)}
.hr{height:1px; background:rgba(20,16,10,.10); margin:12px 0}
.form{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
@media (max-width:700px){.form{grid-template-columns:1fr}}
.input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(20,16,10,.14);
  background: rgba(255,255,255,.85);
  color:var(--text);
  outline:none;
}
textarea{min-height:120px; resize:vertical}
.input:focus, textarea:focus{border-color: rgba(215,179,91,.55)}
.form .full{grid-column:1 / -1}
.note{
  font-size:12px;
  color:rgba(25,25,35,.62);
}
.galleryGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 920px){.galleryGrid{grid-template-columns:1fr 1fr}}
@media (max-width: 560px){.galleryGrid{grid-template-columns:1fr}}
.gItem{
  overflow:hidden;
  border-radius: 16px;
  border:1px solid rgba(20,16,10,.10);
  background: rgba(255,255,255,.86);
}

/* Booking-style preview collage */
.preview{
  position:relative;
  height:210px;
  display:grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap:6px;
  padding:6px;
}
.preview .p{border-radius:12px; overflow:hidden; position:relative; cursor:pointer; background: rgba(0,0,0,.04)}
.preview .p img{width:100%; height:100%; object-fit:cover; display:block}
.preview .p.big{grid-row:1 / span 2}
.preview .more{
  position:absolute;
  right:12px; bottom:12px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(0,0,0,.55);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
  font-size:13px;
  backdrop-filter: blur(10px);
}

@media (max-width: 560px){
  .preview{height:240px; grid-template-columns: 1fr; grid-template-rows: 1fr;}
  .preview .p.small{display:none}
  .preview .p.big{grid-row:auto}
}
.gMeta{padding:12px 12px 14px}
.gMeta h4{margin:0 0 6px; font-size:15px}
.gMeta .meta{color:rgba(25,25,35,.62); font-size:12px; line-height:1.4}
.pills{
  display:flex; gap:10px; flex-wrap:wrap; margin: 0 0 14px;
}
.pill{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(20,16,10,.12);
  background: rgba(255,255,255,.78);
  cursor:pointer;
  user-select:none;
  font-size:13px;
  color:rgba(25,25,35,.78);
}
.pill.active{
  border-color: rgba(0,53,128,.35);
  color: #ffffff;
  background: linear-gradient(135deg, #003580, #0057b8);
}
.modal{
  position:fixed; inset:0;
  background: rgba(0,0,0,.75);
  display:none;
  align-items:center;
  justify-content:center;
  padding:22px;
  z-index:200;
}
.modal.show{display:flex}
.modalCard{
  width:min(1100px, 100%);
  background: rgba(7,7,11,.92);
  border:1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,.65);
}
.modalTop{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.modalTop .t{font-size:14px; color:rgba(243,243,246,.82)}
.modalTop .c{font-size:12px; color:rgba(243,243,246,.62)}
.iconBtn{
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.14);
  color: rgba(255,255,255,.96);
  border-radius: 12px;
  padding: 8px 10px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
}
.iconBtn:hover{
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.40);
}
.viewer img{
  width:100%;
  height:min(70vh, 640px);
  object-fit:contain;
  display:block;
}
.thumbs{
  display:flex;
  gap:8px;
  padding:10px;
  overflow:auto;
  background: rgba(10,10,14,.96);
  border-top:1px solid rgba(255,255,255,.10);
}
.thumbs button{
  border:1px solid rgba(255,255,255,.14);
  background: transparent;
  padding:0;
  border-radius:12px;
  overflow:hidden;
  cursor:pointer;
  flex: 0 0 auto;
}
.thumbs img{width:88px; height:60px; object-fit:cover; display:block}
.thumbs button.active{border-color: rgba(242,210,122,.85)}

@media (max-width: 560px){
  .thumbs img{width:72px; height:54px}
}
.viewerNav{
  position:absolute; inset:0;
  display:flex;
  align-items:center; justify-content:space-between;
  padding: 14px clamp(14px, calc((100% - 860px)/2 + 14px), 180px);
  pointer-events:none;
}
.viewerNav button{
  pointer-events:auto;
}

/* Booking-style lightbox */
.modalTop .right{
  display:flex;
  align-items:center;
  gap:10px;
}
.countPill{
  font-size:12px;
  color: rgba(255,255,255,.86);
  border:1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.12);
  padding:6px 10px;
  border-radius:999px;
  backdrop-filter: blur(10px);
}
.thumbs{
  display:flex;
  gap:8px;
  padding:10px;
  overflow:auto;
  background: rgba(0,0,0,.55);
  border-top:1px solid rgba(255,255,255,.10);
  scroll-snap-type: x mandatory;
}
.thumbs::-webkit-scrollbar{height:8px}
.thumbs::-webkit-scrollbar-thumb{background: rgba(255,255,255,.18); border-radius:999px}
.thumbs button{
  border:1px solid rgba(255,255,255,.12);
  background: transparent;
  padding:0;
  border-radius: 12px;
  overflow:hidden;
  cursor:pointer;
  scroll-snap-align: start;
}
.thumbs button.active{border-color: rgba(215,179,91,.70)}
.thumbs img{
  width: 86px;
  height: 62px;
  object-fit: cover;
  display:block;
}

@media (max-width: 700px){
  .modal{padding:0}
  .modalCard{width:100%; height:100%; border-radius:0}
  .viewer img{height: min(70vh, 520px)}
  .thumbs img{width: 78px; height: 56px}
}


/* --- B2C polish --- */
.hero .card{border:1px solid rgba(20,16,10,.10)}
.navlinks a{position:relative}
.navlinks a::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-10px;
  height:2px; border-radius:2px;
  background: linear-gradient(90deg, rgba(215,179,91,.0), rgba(215,179,91,.9), rgba(42,163,161,.9), rgba(215,179,91,.0));
  opacity:0; transform:translateY(6px);
  transition: .18s ease;
}
.navlinks a:hover::after{opacity:1; transform:translateY(0)}
.header{
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.70));
}

/* Home highlights */
.highlights{padding: 22px 0 54px}
.highlights h2{margin:0 0 10px; font-size: clamp(22px, 2.4vw, 34px)}
.highlights p{margin:0 0 18px; color: var(--muted)}
.highlightGrid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:16px;
}
.hCard{
  grid-column: span 4;
  min-height: 220px;
  border-radius: 22px;
  overflow:hidden;
  position:relative;
  box-shadow: var(--shadow);
  border: 1px solid rgba(20,16,10,.10);
  transform: translateZ(0);
}
.hCard::before{
  content:"";
  position:absolute; inset:0;
  background: var(--bgimg) center/cover no-repeat;
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.03);
}
.hCard::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(10,8,6,.08), rgba(10,8,6,.42)),
    radial-gradient(900px 500px at 20% 10%, rgba(215,179,91,.45), transparent 55%),
    radial-gradient(900px 500px at 85% 20%, rgba(42,163,161,.35), transparent 60%);
}
.hInner{
  position:absolute; inset:0;
  padding:18px;
  display:flex; flex-direction:column;
  justify-content:flex-end;
  gap:10px;
  color:#fff;
}
.hKicker{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: rgba(255,255,255,.86);
}
.hTitle{
  margin:0;
  font-size: 22px;
  line-height: 1.15;
}
.hBtnRow{display:flex; gap:10px; flex-wrap:wrap}
.hBtn{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.26);
  color:#fff;
  text-decoration:none;
  backdrop-filter: blur(10px);
}
.hBtn:hover{background: rgba(255,255,255,.20)}
.hCard:hover{transform: translateY(-2px)}
@media (max-width: 980px){
  .hCard{grid-column: span 12; min-height: 240px}
}


/* See-all photos grid (Booking-style) */
.modalGrid{display:none; padding:14px; background: rgba(0,0,0,.55); max-height: calc(100vh - 140px); overflow:auto}
.modalGrid .grid{display:grid; grid-template-columns: repeat(4, 1fr); gap:10px}
.modalGrid button{border:1px solid rgba(255,255,255,.14); background: transparent; padding:0; border-radius:14px; overflow:hidden; cursor:pointer}
.modalGrid img{width:100%; height:140px; object-fit:cover; display:block}
.modal.grid .viewer, .modal.grid .thumbs{display:none}
.modal.grid .modalGrid{display:block}
@media (max-width: 900px){.modalGrid .grid{grid-template-columns: repeat(3, 1fr)} .modalGrid img{height:130px}}
@media (max-width: 560px){.modalGrid .grid{grid-template-columns: repeat(2, 1fr)} .modalGrid img{height:120px}}
/* ---- Home page Explore cards: readable text over photo backgrounds ---- */
a[href$="rooms.html"], a[href$="banquet.html"], a[href$="facilities.html"],
a[href*="/rooms.html"], a[href*="/banquet.html"], a[href*="/facilities.html"]{
  position: relative;
  overflow: hidden;
}

a[href$="rooms.html"]::before,
a[href$="banquet.html"]::before,
a[href$="facilities.html"]::before,
a[href*="/rooms.html"]::before,
a[href*="/banquet.html"]::before,
a[href*="/facilities.html"]::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.45));
  pointer-events:none;
  z-index: 0;
}

/* keep card text above the overlay */
a[href$="rooms.html"] * ,
a[href$="banquet.html"] * ,
a[href$="facilities.html"] * ,
a[href*="/rooms.html"] * ,
a[href*="/banquet.html"] * ,
a[href*="/facilities.html"] * {
  position: relative;
  z-index: 1;
}

