:root{
  --bg:#f6fbff;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#51637a;
  --border:rgba(15,23,42,.10);
  --accent:#f28c18;   /* sunset orange */
  --accent2:#1bb07a;  /* palm green */
  --sea:#1e7bd6;      /* ocean */
  --shadow: 0 16px 40px rgba(2,10,26,.10);
  --radius: 18px;
  --max: 1100px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.55;

  /* Tropical background */
  background:
    linear-gradient(180deg, rgba(246,251,255,0.65), rgba(246,251,255,0.78)),
    url("assets/CaribbeanBG.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.92}
img{max-width:100%; display:block}

.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.section{padding:56px 0}

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:18px; top:18px; width:auto; height:auto;
  padding:10px 12px; background:#fff; color:#000; border-radius:12px; z-index:999;
}

/* =========================
   Header (centered) + collapse
   ========================= */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.75));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: padding 220ms ease, box-shadow 220ms ease, background 220ms ease;
}
.header-spacer{
  height: 0px; /* JS will set this */
}


.header-stack{
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.brand-center{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}

.logo-wrap{
  position: relative;
  width: 120px;
  height: 120px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 2px;
}

.logo-lg{
  width: 120px;
  max-width: 92vw;
  height: auto;
}

.palm-accent{
  position:absolute;
  inset:-10px;
  border-radius: 28px;
  background:
    radial-gradient(70px 70px at 25% 25%, rgba(27,176,122,.22), transparent 60%),
    radial-gradient(90px 90px at 80% 20%, rgba(30,123,214,.20), transparent 60%),
    radial-gradient(90px 90px at 40% 90%, rgba(242,140,24,.18), transparent 60%);
  pointer-events:none;
}

.brand-title{
  font-weight: 1000;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 1.0;
}

.brand-sub{
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
  margin-top: 2px;
}

.main-nav{
  display:flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content:center;
  margin-top: 2px;
}

.main-nav a{
  font-weight: 1000;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid transparent;
  background: rgba(255,255,255,0.55);
}

.main-nav a:hover{
  background: rgba(30,123,214,.10);
  color: var(--text);
  border-color: rgba(15,23,42,.10);
}

.main-nav a.active{
  background: rgba(30,123,214,.14);
  color: var(--text);
  border-color: rgba(15,23,42,.10);
}

.header-actions{
  display:flex;
  gap: 10px;
  margin-top: 6px;
  flex-wrap: wrap;
  justify-content:center;
}

.site-header.is-sticky{
  box-shadow: 0 10px 26px rgba(2,10,26,.10);
}

/* Collapse: ONLY logo + title + sub stay */
.site-header.is-collapsed .main-nav,
.site-header.is-collapsed .header-actions{
  display:none;
}

.site-header.is-collapsed .header-stack{
  padding: 10px 20px 10px;
  gap: 8px;
}

.site-header.is-collapsed .logo-wrap{
  width: 56px;
  height: 56px;
}

.site-header.is-collapsed .logo-lg{
  width: 56px;
}

.site-header.is-collapsed .brand-title{
  font-size: 16px;
  letter-spacing: .9px;
}

.site-header.is-collapsed .brand-sub{
  font-size: 12px;
}

/* =========================
   Buttons / UI
   ========================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  font-weight:900;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  white-space:nowrap;
  box-shadow: 0 10px 20px rgba(2,10,26,.06);
}
.btn:hover{background:rgba(15,23,42,.03); border-color: rgba(15,23,42,.16)}
.btn:active{transform:translateY(1px)}
.btn.primary{
  border-color: rgba(242,140,24,.35);
  background: linear-gradient(180deg, rgba(242,140,24,.18), rgba(242,140,24,.08));
}
.btn.green{
  border-color: rgba(27,176,122,.35);
  background: linear-gradient(180deg, rgba(27,176,122,.18), rgba(27,176,122,.08));
}

/* =========================
   Cards / Layout
   ========================= */
.card{
  border:1px solid var(--border);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}

.cardTitle{margin:0 0 6px; font-size:18px; font-weight:1000}
.muted{color:var(--muted)}
.small{font-size:13px}
hr.sep{border:none; border-top:1px solid var(--border); margin:16px 0}

.grid3{display:grid; grid-template-columns: repeat(3,1fr); gap:14px}
.grid2{display:grid; grid-template-columns: repeat(2,1fr); gap:14px}

.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(30,123,214,.08);
  color:var(--muted);
  font-weight:900;
  font-size:13px;
  width:fit-content;
}
.badge strong{color:var(--text)}

.pills{display:flex; flex-wrap:wrap; gap:10px; margin-top:8px}
.pill{
  display:inline-flex; align-items:center;
  padding:9px 12px;
  border:1px solid var(--border);
  border-radius: 999px;
  background: rgba(27,176,122,.08);
  color: var(--muted);
  font-weight:900;
  font-size:13px;
}

.kv{display:grid; grid-template-columns: 1fr; gap:10px}
.kv a{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 14px;
  border:1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.75);
}
.kv a span{color:var(--muted); font-weight:900}
.kv a strong{font-weight:1000}

/* =========================
   HERO (HOME)
   ========================= */
.hero{padding: 22px 0 10px}
.heroGrid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:stretch;
}

/* Big card: image on top, content below */
.heroCard{
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

/* No gap under image */
.heroMedia{
  width: 100%;
  aspect-ratio: 16 / 9;
  background:#e6f2ff;
}
.heroMedia img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(1.10) contrast(1.05) brightness(1.03);
}

/* Content below image */
.heroBody{
  padding: 18px 18px 20px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.kicker{
  display:inline-flex; align-items:center; gap:10px;
  color:var(--muted);
  font-weight:900;
}
.kicker .dot{
  width:10px; height:10px; border-radius:99px;
  background: var(--accent2);
  box-shadow: 0 0 0 5px rgba(27,176,122,.14);
}

.heroTitle{
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 1000;
  line-height:1.06;
  letter-spacing:-.7px;
  margin:0;
}

.heroSub{
  margin:0;
  color:rgba(15,23,42,.80);
  font-size: 16px;
  max-width: 60ch;
}

.heroActions{display:flex; gap:10px; flex-wrap:wrap; margin-top:6px}

/* Side card spacing */
.sideCard{padding:22px; display:flex; flex-direction:column; gap:14px}

/* =========================
   Menu / Gallery / Map / Footer
   ========================= */
.menuWrap{display:grid; grid-template-columns: 1fr; gap:14px}
.menuSection h2{margin:0 0 10px; font-size:22px; letter-spacing:-.2px}
.menuNote{color:var(--muted); font-weight:900; font-size:13px; margin-top:6px}
.menuItems{display:grid; grid-template-columns: repeat(2, 1fr); gap:10px 14px}
.menuItem{
  border:1px solid var(--border);
  background: rgba(246,251,255,.90);
  border-radius: 16px;
  padding:12px 12px;
  display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
}
.menuItem .left{display:flex; flex-direction:column; gap:2px}
.menuItem .name{font-weight:1000}
.menuItem .desc{color:var(--muted); font-size:13px}
.menuItem .price{font-weight:1000; white-space:nowrap}

.gallery{display:grid; grid-template-columns: repeat(12, 1fr); gap:12px}
.tile{
  grid-column: span 6;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
}
.tile.large{grid-column: span 12}
.tile img{width:100%; height:100%; object-fit:cover}
.tile .cap{
  padding:12px 14px;
  border-top:1px solid var(--border);
  color:var(--muted);
  font-weight:900;
  font-size:13px;
}

.map{
  border:1px solid var(--border);
  border-radius: 18px;
  overflow:hidden;
  background: var(--card);
  box-shadow: var(--shadow);
}
.map iframe{width:100%; height:360px; border:0}

.footer{
  padding:26px 0 38px;
  color:var(--muted);
  border-top:1px solid var(--border);
  background: rgba(30,123,214,.06);
}
.footerGrid{
  display:flex; align-items:flex-start; justify-content:space-between;
  gap:16px; flex-wrap:wrap;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 920px){
  .heroGrid{grid-template-columns: 1fr}
  .grid3{grid-template-columns: 1fr}
  .grid2{grid-template-columns: 1fr}
  .menuItems{grid-template-columns: 1fr}
  .tile{grid-column: span 12}
}

@media (max-width: 768px){
  .header-actions{flex-direction:column; width:100%}
  .header-actions .btn{width:100%}
  .logo-wrap{width:106px;height:106px}
  .logo-lg{width:104px}
  .brand-title{font-size:26px}

  .heroMedia{aspect-ratio: 4 / 3;}
  .heroBody{padding:14px}
  .heroActions{justify-content:center}
  .heroSub{font-size:15px}
}
