:root{
  --bg1:#050712;
  --bg2:#070b18;
  --text:#f5f7ff;
  --muted: rgba(245,247,255,.72);
  --line: rgba(255,255,255,.12);
  --shadow: 0 20px 70px rgba(0,0,0,.45);
  --radius: 24px;
  --radius2: 18px;

  /* Luxury palette */
  --accent:#f7f7fb;
  --accentText:#0b1020;
  --gold: rgba(245,208,111,.70);

  /* Typography */
  --fontBody: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  --fontDisplay: "Cormorant Garamond", Georgia, serif;

  /* Surfaces */
  --glass1: rgba(255,255,255,.075);
  --glass2: rgba(255,255,255,.03);
  --glassBorder: rgba(255,255,255,.11);
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: var(--fontBody);
  color:var(--text);
  background:
    radial-gradient(900px 600px at 18% 0%, rgba(245,208,111,.10), transparent 60%),
    radial-gradient(900px 650px at 80% 10%, rgba(120,119,198,.22), transparent 62%),
    radial-gradient(900px 650px at 50% 120%, rgba(34,197,94,.09), transparent 55%),
    linear-gradient(180deg, var(--bg1), var(--bg2));
  min-height:100vh;
}

a{ color:inherit; text-decoration:none; }

.wrap{
  max-width:1100px;
  margin:0 auto;
  padding:22px 16px 72px;
}

/* ================= HEADER ================= */

.headerBar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 0 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  min-width: 260px;
}

.brandLogo{
  width:72px;
  height:72px;
  object-fit:contain;
  padding:8px;
  border-radius:18px;
  background: linear-gradient(180deg, #ffffff, rgba(255,255,255,.92));
  border:1px solid rgba(0,0,0,.12);
  box-shadow: 0 14px 45px rgba(0,0,0,.22);
}

.brandText{ display:grid; gap:2px; }

.brandTitle{
  font-weight:800;
  letter-spacing:.2px;
  line-height:1.05;
  font-size:15px;
}

.brandSub{
  font-size:12px;
  color: rgba(245,247,255,.58);
  letter-spacing:.2px;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  flex-wrap:wrap;
}

.nav a{
  font-size:13px;
  color:rgba(245,247,255,.80);
  padding:10px 14px;
  border-radius:999px;
  border:1px solid transparent;
  letter-spacing: .25px;
  background: transparent;
  transition: background .2s ease, border-color .2s ease, transform .12s ease;
}

.nav a:hover{
  color:var(--text);
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  transform: translateY(-1px);
}

.nav a.active{
  color: var(--accentText);
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,.90));
  border-color: rgba(255,255,255,.25);
  font-weight:800;
}

/* ================= TYPOGRAPHY ================= */

h1, h2{
  font-family: var(--fontDisplay);
  letter-spacing: .2px;
}

h1{
  margin:8px 0 10px;
  font-size:46px;
  line-height:1.05;
  font-weight: 700;
}

h2{
  line-height:1.2;
  font-weight: 700;
}

.lead{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.75;
  max-width:78ch;
  font-size:15px;
  letter-spacing:.15px;
}

/* ================= BUTTONS ================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.035);
  color:var(--text);
  font-weight:800;
  letter-spacing: .25px;
  transition: transform .12s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  cursor:pointer;
  position: relative;
  overflow:hidden;
  white-space:nowrap;
}

.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.22);
}

.btn.primary{
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,.90));
  color: var(--accentText);
  border-color: rgba(255,255,255,.22);
  font-weight:900;
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
}

.btn.primary::after{
  content:"";
  position:absolute;
  inset:-40%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.40), transparent);
  transform: translateX(-60%) rotate(12deg);
  transition: transform .7s ease;
  pointer-events:none;
}

.btn.primary:hover::after{
  transform: translateX(60%) rotate(12deg);
}

/* ================= PANELS ================= */

.panel{
  border-radius: var(--radius);
  border:1px solid var(--glassBorder);
  background: linear-gradient(180deg, var(--glass1), var(--glass2));
  box-shadow: var(--shadow);
  padding:20px;
  backdrop-filter: blur(14px);
}

/* hero panel */
.panel:first-of-type{
  padding:26px 24px;
  border-color: rgba(245,208,111,.20);
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(245,208,111,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
}

.panel:first-of-type h1{ margin-top: 2px; }

/* ================= LAYOUT GRID (PAGE GRID) ================= */
/* KEEP .grid for your 2-column layout ONLY */
.grid{
  margin-top:16px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:start;
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:12px;
}

.card{
  border-radius: 20px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  padding:14px;
  transition: transform .14s ease, background .2s ease, border-color .2s ease;
}

.card:hover{
  transform: translateY(-2px);
  border-color: rgba(245,208,111,.24);
  background: rgba(255,255,255,.045);
}

.card h3{
  margin:0 0 6px;
  font-size:15px;
  font-weight:900;
  letter-spacing: .2px;
}

.card p{
  margin:0;
  color: rgba(245,247,255,.72);
  line-height:1.6;
  font-size:13px;
}

/* ================= PILLS ================= */

.pillRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: rgba(245,247,255,.82);
  font-size:12px;
  font-weight:900;
  letter-spacing: .35px;
}

/* ================= FOOTER ================= */

.footer{
  margin-top:28px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  color: rgba(245,247,255,.55);
  font-size:12px;
  letter-spacing: .2px;
}

.footer a{ color: rgba(245,247,255,.70); }
.footer a:hover{ color: var(--text); }

/* ================= FLOATING WHATSAPP ================= */

.floatingWhatsApp{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
}

.floatingWhatsApp a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(10,14,26,.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  font-weight:900;
  letter-spacing:.25px;
}

.floatingWhatsApp a:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(245,208,111,.25);
}

/* ================= ✅ CALENDAR (DARK THEME + NEW CLASS NAMES) ================= */
/* IMPORTANT: This replaces your white calendar styling that made the page look “washed out” */

.calGrid{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:8px;
  margin-top:12px;
}

.calDow{
  font-size:12px;
  color: rgba(245,247,255,.60);
  font-weight:900;
  text-transform:uppercase;
  padding:6px 2px;
  letter-spacing:.25px;
}

.calDay{
  border-radius:14px;
  padding:10px;
  min-height:74px;
  text-decoration:none;
  display:block;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
}

.calDay:hover{
  border-color: rgba(245,208,111,.22);
  background: rgba(255,255,255,.055);
}

.calDay.muted{
  background: rgba(255,255,255,.02);
  color: rgba(245,247,255,.40);
  border-color: rgba(255,255,255,.08);
}

.calDay.today{
  outline:2px solid rgba(245,208,111,.28);
  outline-offset: 0;
}

.calNum{
  font-weight:1000;
  font-size:14px;
}

.calCount{
  margin-top:6px;
  display:inline-block;
  padding:4px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  font-size:12px;
  font-weight:900;
  background: rgba(255,255,255,.03);
  color: rgba(245,247,255,.85);
}

.calCount.on{
  background: rgba(34,197,94,.12);
  border-color: rgba(34,197,94,.35);
}

.calCount.zero{
  background: rgba(255,255,255,.02);
}

/* ================= ✅ BOOKINGS TABLE RESPONSIVE ================= */

.tableWrap{
  width:100%;
  overflow-x:auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
}

.tableWrap table{
  width:100%;
  min-width: 860px;
  border-collapse:separate;
  border-spacing:0;
}

.tableWrap th,
.tableWrap td{
  padding:14px 14px;
  border-bottom:1px solid rgba(255,255,255,.10);
  vertical-align:top;
  white-space:nowrap;
  color: rgba(245,247,255,.90);
}

.tableWrap th{
  text-align:left;
  font-size:12px;
  letter-spacing:.25px;
  text-transform:uppercase;
  color: rgba(245,247,255,.62);
  position: sticky;
  top: 0;
  background: rgba(10,14,26,.55);
  backdrop-filter: blur(10px);
  z-index: 1;
}

.actionSelect{
  width: 150px;
  padding:10px 12px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: var(--text);
  outline:none;
  font-weight:900;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 920px){
  .grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  h1{ font-size: 38px; }
  .panel:first-of-type{ padding:22px 18px; }
}

@media (max-width: 760px){
  .headerBar{
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-bottom: 10px;
  }
  .brand{
    width:100%;
    justify-content:center;
    min-width: unset;
  }
  .nav{
    width:100%;
    justify-content:center;
    gap: 10px;
  }
  .nav a{
    padding:10px 14px;
  }
}

@media (max-width: 720px){
  .calGrid{ gap:6px; }
  .calDay{ min-height:64px; padding:8px; }
}
