/* ============================================================
   FYNBOS & FOAM — MAIN STYLESHEET
   ============================================================
   BRAND COLOURS (update these to rebrand):
   --green-dark:   #085041   (nav, hero backgrounds)
   --green-mid:    #1D9E75   (primary buttons, accents)
   --green-light:  #E1F5EE   (light tints, highlights)
   --teal:         #5DCAA5   (secondary accents)
   --sage:         #9FE1CB   (nav links, subtle text)
   --gold:         #EF9F27   (CTA buttons, highlights)
   --sand:         #F1EFE8   (section backgrounds)
   ============================================================ */

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

:root {
  --green-dark: #085041;
  --green-dark2: #0F6E56;
  --green-mid: #1D9E75;
  --green-light: #E1F5EE;
  --teal: #5DCAA5;
  --sage: #9FE1CB;
  --gold: #EF9F27;
  --gold-light: #FAC775;
  --gold-dark: #412402;
  --sand: #F1EFE8;
  --text-dark: #2C2C2A;
  --text-mid: #5F5E5A;
  --text-light: #888780;
  --border: rgba(0,0,0,0.1);
  --radius: 10px;
  --radius-lg: 14px;
}

html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--text-dark); background: #fff; line-height: 1.6; }

/* ---- TYPOGRAPHY ---- */
h1 { font-size: clamp(28px, 5vw, 44px); font-weight: 500; line-height: 1.15; }
h2 { font-size: clamp(22px, 3vw, 28px); font-weight: 500; line-height: 1.25; margin-bottom: 14px; }
h3 { font-size: 18px; font-weight: 500; }
p { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 12px; }
p:last-child { margin-bottom: 0; }
a { color: inherit; }
strong { font-weight: 500; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block; background: var(--green-mid); color: #fff;
  border: none; border-radius: 8px; padding: 12px 26px; font-size: 15px;
  font-weight: 500; cursor: pointer; text-decoration: none; transition: background 0.15s;
}
.btn-primary:hover { background: var(--green-dark2); }

.btn-outline {
  display: inline-block; background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4); border-radius: 8px;
  padding: 12px 26px; font-size: 15px; cursor: pointer; text-decoration: none;
  transition: background 0.15s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

.btn-gold {
  display: inline-block; background: var(--gold); color: var(--gold-dark);
  border: none; border-radius: 8px; padding: 13px 28px; font-size: 15px;
  font-weight: 500; cursor: pointer; text-decoration: none; transition: background 0.15s;
}
.btn-gold:hover { background: var(--gold-light); }

.btn-secondary {
  display: inline-block; background: #fff; color: var(--text-dark);
  border: 1px solid var(--border); border-radius: 8px; padding: 10px 20px;
  font-size: 14px; cursor: pointer; text-decoration: none; transition: background 0.15s;
}
.btn-secondary:hover { background: var(--sand); }

.full-width { width: 100%; text-align: center; }

/* ---- NAVIGATION ---- */
.nav {
  background: var(--green-dark); padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-name { font-size: 16px; font-weight: 500; color: #E1F5EE; letter-spacing: 0.02em; }
.nav-sub { font-size: 10px; color: var(--teal); letter-spacing: 0.14em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; }
.nav-links a { font-size: 13px; color: var(--sage); text-decoration: none; letter-spacing: 0.03em; }
.nav-links a:hover { color: #fff; }
.nav-links .nav-cta {
  background: var(--gold); color: var(--gold-dark); padding: 8px 18px;
  border-radius: 6px; font-weight: 500;
}
.nav-links .nav-cta:hover { background: var(--gold-light); }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--sage); margin: 4px 0; border-radius: 2px; }
.nav-back { font-size: 13px; color: var(--sage); text-decoration: none; }
.nav-back:hover { color: #fff; }

/* ---- HERO ---- */
.hero {
  background: var(--green-dark); padding: 72px 28px 64px;
  text-align: center;
}
.hero-badge {
  display: inline-block; background: rgba(29,158,117,0.25); color: var(--sage);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; padding: 5px 16px;
  border-radius: 20px; margin-bottom: 20px; border: 0.5px solid rgba(93,202,165,0.3);
}
.hero h1 { color: #E1F5EE; margin-bottom: 16px; }
.hero h1 em { color: var(--teal); font-style: normal; }
.hero-sub { font-size: 16px; color: var(--sage); max-width: 480px; margin: 0 auto 32px; }
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.stat-num { font-size: 24px; font-weight: 500; color: #E1F5EE; }
.stat-label { font-size: 11px; color: var(--sage); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }

/* ---- PHOTO GRID ---- */
.photo-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px; gap: 4px;
}
.photo { background: #ccc; overflow: hidden; display: flex; align-items: center; justify-content: center; position: relative; }
.photo-main { grid-row: 1 / 3; }
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center; padding: 16px;
}
.photo-placeholder span { font-size: 11px; color: #777; line-height: 1.5; font-family: monospace; }
.photo-placeholder small { font-size: 10px; color: #999; }
.photo-placeholder.small span { font-size: 10px; }
.photo-label {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(8,80,65,0.85); color: #E1F5EE;
  font-size: 11px; padding: 4px 10px; border-radius: 4px; letter-spacing: 0.04em;
}

/* ---- SECTIONS ---- */
.section { padding: 60px 28px; }
.section-alt { background: var(--sand); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-inner.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.section-inner.two-col.reverse { direction: rtl; }
.section-inner.two-col.reverse > * { direction: ltr; }
.section-label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-dark2); font-weight: 500; margin-bottom: 8px;
}
.section-label.center, h2.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---- ROOMS ---- */
.rooms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.room { background: #fff; border: 0.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.room-wide { grid-column: 1 / -1; }
.room-img { height: 140px; background: #ddd; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.room-img img { width: 100%; height: 100%; object-fit: cover; }
.room-tag {
  position: absolute; top: 10px; left: 10px; background: var(--green-mid); color: #fff;
  font-size: 10px; padding: 3px 8px; border-radius: 4px; letter-spacing: 0.06em;
}
.room-body { padding: 12px 14px; }
.room-name { font-size: 14px; font-weight: 500; color: var(--text-dark); margin-bottom: 3px; }
.room-desc { font-size: 12px; color: var(--text-mid); }

/* ---- AMENITIES ---- */
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 32px; }
.amenity { background: #fff; border: 0.5px solid var(--border); border-radius: var(--radius); padding: 16px; text-align: center; }
.amenity-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
.amenity-name { font-size: 12px; font-weight: 500; color: var(--text-dark); margin-bottom: 3px; }
.amenity-detail { font-size: 11px; color: var(--text-light); }

/* ---- CTA STRIP ---- */
.cta-strip { background: var(--green-dark); padding: 56px 28px; text-align: center; }
.cta-strip h2 { color: #E1F5EE; margin-bottom: 10px; }
.cta-strip p { color: var(--sage); margin-bottom: 28px; }

/* ---- LOCATION ---- */
.location-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag {
  background: var(--green-light); color: var(--green-dark);
  font-size: 12px; padding: 5px 12px; border-radius: 20px;
  border: 0.5px solid var(--teal);
}
.map-placeholder {
  background: #ddd; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 320px; display: flex; align-items: center; justify-content: center;
}
.map-placeholder iframe { width: 100%; height: 400px; border: none; display: block; }
.map-placeholder-inner { text-align: center; padding: 24px; }
.map-placeholder-inner p { color: var(--text-mid); font-size: 14px; margin-top: 10px; }
.map-placeholder-inner small { color: var(--text-light); font-size: 12px; }

/* ---- REVIEWS ---- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px; }
.review { background: #fff; border: 0.5px solid var(--border); border-radius: var(--radius); padding: 20px; }
.stars { color: var(--gold); font-size: 14px; margin-bottom: 10px; }
.review-text { font-size: 13px; color: var(--text-mid); line-height: 1.6; margin-bottom: 12px; font-style: italic; }
.review-author { font-size: 13px; font-weight: 500; color: var(--text-dark); }
.review-date { font-size: 11px; color: var(--text-light); }

/* ---- FOOTER ---- */
.footer { background: #04342C; padding: 48px 28px 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-name { font-size: 17px; font-weight: 500; color: #E1F5EE; margin-bottom: 8px; }
.footer-brand p { color: var(--sage); font-size: 13px; line-height: 1.7; }
.footer-col h4 { font-size: 11px; font-weight: 500; color: #E1F5EE; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: var(--sage); text-decoration: none; margin-bottom: 8px; }
.footer-col a:hover { color: #E1F5EE; }
.footer-bottom { border-top: 0.5px solid rgba(93,202,165,0.15); text-align: center; padding: 16px; font-size: 12px; color: var(--teal); }

/* ---- UTILITIES ---- */
.info-box { background: var(--green-light); border-radius: 8px; padding: 12px 14px; font-size: 13px; color: var(--green-dark); line-height: 1.6; margin-bottom: 16px; }
.cal-legend { display: flex; gap: 16px; flex-wrap: wrap; }
.cal-leg { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--text-mid); }
.cal-leg-dot { width: 10px; height: 10px; border-radius: 3px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 56px; left: 0; right: 0; background: var(--green-dark); padding: 16px 28px; gap: 14px; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: block; }
  .section-inner.two-col { grid-template-columns: 1fr; gap: 32px; }
  .section-inner.two-col.reverse { direction: ltr; }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .photo-main { grid-row: auto; grid-column: 1 / -1; height: 240px; }
  .photo { height: 160px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
}
