/* Dave & Judy's Sint Maarten 2027 — Shared Stylesheet */

:root {
  --cream: #fdf6ed;
  --terracotta: #c0603a;
  --terracotta-dark: #9e4d2d;
  --navy: #1a3a5c;
  --gold: #d4a853;
  --green: #2e7d4f;
  --text: #2c2c2c;
  --muted: #666;
  --border: #e0d5c5;
  --card-bg: #fff;
  --yellow-rec: #fffbea;
  --yellow-rec-border: #f5c842;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
nav .nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0 16px;
}
nav a {
  color: #dbe8f7;
  text-decoration: none;
  font-family: 'Trebuchet MS', Arial, sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 14px 16px;
  display: block;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
nav a:hover, nav a.active { color: #fff; background: rgba(255,255,255,.12); }
nav .nav-brand {
  color: var(--gold);
  font-size: .95rem;
  margin-right: 12px;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
}
.hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
}
.hero-content {
  position: relative;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 24px 36px;
}
.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
  line-height: 1.2;
}
.hero .subtitle {
  color: #f0d9b5;
  font-size: 1.05rem;
  margin-top: 8px;
  font-style: italic;
}

/* ── PAGE WRAPPER ── */
.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px 60px;
}

/* ── SECTION HEADINGS ── */
h2 {
  font-size: 1.55rem;
  color: var(--navy);
  border-bottom: 3px solid var(--terracotta);
  padding-bottom: 8px;
  margin: 48px 0 24px;
}
h3 {
  font-size: 1.15rem;
  color: var(--terracotta-dark);
  margin: 28px 0 12px;
}

/* ── INTRO TEXT ── */
.intro-text {
  font-size: 1.05rem;
  max-width: 800px;
  margin-bottom: 12px;
}

/* ── CALLOUT BOXES ── */
.callout {
  background: #fff8ec;
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  padding: 14px 18px;
  margin: 16px 0 24px;
  font-size: .95rem;
}
.callout.blue { border-left-color: var(--navy); background: #edf3fa; }
.callout.green { border-left-color: var(--green); background: #edf7f1; }
.callout.red { border-left-color: #c0392b; background: #fdf0ee; }

/* ── CARDS GRID ── */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-top: 8px; }
.cards.two-col { grid-template-columns: repeat(auto-fill, minmax(420px, 1fr)); }

/* ── CARD ── */
.card {
  background: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  transition: transform .15s, box-shadow .15s;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.12); }
.card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.card-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.card-body h4 { font-size: 1.05rem; color: var(--navy); margin-bottom: 2px; }
.card-body p { font-size: .9rem; color: var(--muted); flex: 1; }
.card-meta { font-size: .82rem; color: var(--muted); display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.card-meta span { display: inline-flex; align-items: center; gap: 3px; }
.card-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.card-links a {
  font-size: .8rem;
  color: var(--terracotta);
  text-decoration: none;
  border: 1px solid var(--terracotta);
  border-radius: 20px;
  padding: 3px 10px;
  transition: background .2s, color .2s;
  font-family: 'Trebuchet MS', Arial, sans-serif;
}
.card-links a:hover { background: var(--terracotta); color: #fff; }

/* booked / status badges */
.badge {
  display: inline-block;
  font-size: .75rem;
  font-family: 'Trebuchet MS', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 12px;
  padding: 2px 9px;
  margin-left: 6px;
}
.badge-green { background: #d4edda; color: #1a6630; }
.badge-grey { background: #e9ecef; color: #555; }
.badge-amber { background: #fff3cd; color: #856404; }

/* ── STARS ── */
.stars { text-decoration: none; white-space: nowrap; }
.stars .filled { color: var(--gold); }
.stars .empty { color: #ccc; }
.stars .count { font-size: .82rem; color: var(--muted); font-family: 'Trebuchet MS', Arial, sans-serif; }

/* ── DAY PLAN ── */
.day-block {
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
  overflow: hidden;
}
.day-header {
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  font-size: 1rem;
  font-family: 'Trebuchet MS', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .03em;
}
.day-body { padding: 16px 20px 20px; }
.day-body .slot { margin-bottom: 14px; }
.day-body .slot-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--terracotta);
  font-family: 'Trebuchet MS', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 2px;
}
.day-body .slot p { font-size: .93rem; color: var(--text); }

/* ── BOOKING STATUS TABLE ── */
.booking-table { width: 100%; border-collapse: collapse; font-size: .88rem; margin-top: 12px; }
.booking-table th { background: var(--navy); color: #fff; padding: 9px 12px; text-align: left; font-family: 'Trebuchet MS', Arial, sans-serif; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; }
.booking-table td { padding: 9px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
.booking-table tr:last-child td { border-bottom: none; }
.booking-table tr:nth-child(even) td { background: #f9f5ef; }

/* ── WEATHER TABLE ── */
.weather-table { width: 100%; border-collapse: collapse; font-size: .88rem; margin-top: 8px; }
.weather-table th { background: var(--terracotta); color: #fff; padding: 8px 12px; font-family: 'Trebuchet MS', Arial, sans-serif; font-size: .8rem; text-transform: uppercase; }
.weather-table td { padding: 8px 12px; border-bottom: 1px solid var(--border); text-align: center; }
.weather-table tr:last-child td { border-bottom: none; }
.weather-table tr:nth-child(even) td { background: #faf6f0; }

/* ── BUDGET TABLE ── */
.budget-table { width: 100%; border-collapse: collapse; font-size: .9rem; margin-top: 8px; }
.budget-table th { background: var(--navy); color: #fff; padding: 9px 14px; text-align: left; font-family: 'Trebuchet MS', Arial, sans-serif; }
.budget-table td { padding: 9px 14px; border-bottom: 1px solid var(--border); }
.budget-table tr.total td { font-weight: 700; background: #edf3fa; color: var(--navy); }
.budget-table tr:last-child td { border-bottom: none; }

/* ── PERSONAL RECOMMENDATIONS ── */
.rec-card {
  background: var(--yellow-rec);
  border: 2px solid var(--yellow-rec-border);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 16px;
}
.rec-card h4 { color: #7a5c00; margin-bottom: 4px; }
.rec-card p { font-size: .9rem; color: #5a4500; }
.rec-card .card-links a { border-color: #b8860b; color: #7a5c00; }
.rec-card .card-links a:hover { background: #b8860b; color: #fff; }

/* ── TIPS BOX ── */
.tip-box {
  background: #edf3fa;
  border: 1px solid #b8cfe8;
  border-radius: 8px;
  padding: 18px 20px;
  margin: 20px 0;
  font-size: .93rem;
}
.tip-box h4 { color: var(--navy); margin-bottom: 8px; font-size: 1rem; }

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 28px 16px;
  color: var(--muted);
  font-size: .82rem;
  border-top: 1px solid var(--border);
  margin-top: 40px;
  font-family: 'Trebuchet MS', Arial, sans-serif;
}

/* ── UTILITIES ── */
.two-col-text { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.highlight { color: var(--terracotta); font-weight: 700; }
ul.clean { list-style: none; padding: 0; }
ul.clean li { padding: 4px 0; padding-left: 18px; position: relative; font-size: .93rem; }
ul.clean li::before { content: "→"; position: absolute; left: 0; color: var(--terracotta); }
.section-intro { max-width: 720px; font-size: .95rem; color: var(--muted); margin-bottom: 20px; }

/* ── NOTICE ── */
.notice {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: .9rem;
  margin: 16px 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .cards { grid-template-columns: 1fr; }
  .cards.two-col { grid-template-columns: 1fr; }
  .two-col-text { grid-template-columns: 1fr; }
  .hero { min-height: 220px; }
  h2 { font-size: 1.3rem; }
  nav .nav-brand { display: none; }
  nav a { padding: 12px 10px; font-size: .75rem; }
}
