/* ============================================================
   Riverhouse — shared stylesheet
   Hydrangea palette: blue-violet blooms, dusty rose, sage leaves,
   warm cream. Edit the variables below to change colours/fonts
   site-wide.
   ============================================================ */

:root {
  --colour-ink:        #3a2530;   /* main text — rich deep plum */
  --colour-forest:     #8c3a52;   /* deep wine-rose — primary */
  --colour-forest-dk:  #5c2536;   /* dark wine */
  --colour-river:      #b5651d;   /* rich copper — links/accents */
  --colour-stone:      #f7ede2;   /* warm cream background */
  --colour-stone-dk:   #ecd9c4;
  --colour-gold:       #c98a3d;   /* rich amber gold — CTAs/highlights */
  --colour-white:      #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(58, 37, 48, 0.16);
  --font-head: Georgia, 'Iowan Old Style', 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --maxw: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--colour-ink);
  background: var(--colour-stone);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--colour-forest-dk);
  line-height: 1.15;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.3rem; }
p  { margin: 0 0 1em; }
a  { color: var(--colour-river); }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 245, 241, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--colour-stone-dk);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--colour-forest-dk);
  text-decoration: none;
  letter-spacing: 0.5px;
}
.brand span { color: var(--colour-gold); }

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
nav.main-nav a {
  text-decoration: none;
  color: var(--colour-ink);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
nav.main-nav a:hover,
nav.main-nav a[aria-current="page"] {
  border-bottom-color: var(--colour-gold);
  color: var(--colour-forest-dk);
}
.nav-book {
  background: var(--colour-forest);
  color: var(--colour-white) !important;
  padding: 9px 18px !important;
  border-radius: 999px;
  border-bottom: none !important;
}
.nav-book:hover { background: var(--colour-forest-dk); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--colour-forest);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 1.1rem;
  cursor: pointer;
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-block; }
  nav.main-nav {
    display: none;
    width: 100%;
    order: 3;
  }
  nav.main-nav.open { display: block; }
  nav.main-nav ul { flex-direction: column; gap: 4px; padding: 14px 0; }
  .site-header .wrap { flex-wrap: wrap; }
}

/* ---------- hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--colour-forest) 0%, var(--colour-forest-dk) 55%, var(--colour-river) 100%);
  color: var(--colour-white);
  padding: 90px 0 70px;
  text-align: center;
}
.hero h1 { color: var(--colour-white); }
.hero .tagline {
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 28px;
  opacity: 0.92;
}
.hero-sub {
  padding: 46px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--colour-forest) 0%, var(--colour-forest-dk) 100%);
  color: var(--colour-white);
}
.hero-sub h1 { color: var(--colour-white); margin-bottom: 6px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  background: var(--colour-gold);
  color: var(--colour-white);
}
.btn-gold:hover { box-shadow: 0 8px 20px rgba(201,138,61,0.45); }
.btn-outline {
  background: transparent;
  color: var(--colour-white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-forest {
  background: var(--colour-forest);
  color: var(--colour-white);
}
.btn-forest:hover { box-shadow: 0 8px 20px rgba(140,58,82,0.4); }
.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- sections ---------- */
section { padding: 64px 0; }
section.alt { background: var(--colour-white); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 40px; }
.section-head p { color: #5c4650; }
.kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--colour-gold);
  margin-bottom: 10px;
}

/* ---------- grid / cards ---------- */
.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.card {
  background: var(--colour-white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.card h3 { margin-bottom: 8px; }
.icon-badge {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--colour-stone-dk);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}

/* ---------- photo gallery (masonry, uncropped) ---------- */
.photo-gallery {
  column-count: 3;
  column-gap: 18px;
}
.photo-gallery img {
  width: 100%;
  display: block;
  margin: 0 0 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  break-inside: avoid;
}
@media (max-width: 900px) {
  .photo-gallery { column-count: 2; }
}
@media (max-width: 560px) {
  .photo-gallery { column-count: 1; }
}

/* ---------- photo placeholder ---------- */
.photo-placeholder {
  border: 2px dashed #c99a7a;
  border-radius: var(--radius);
  background: repeating-linear-gradient(45deg, #f2e4d8, #f2e4d8 10px, #ecd6c2 10px, #ecd6c2 20px);
  color: #5c4438;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.92rem;
  padding: 20px;
  min-height: 180px;
}
.photo-placeholder strong { display: block; margin-bottom: 4px; color: var(--colour-forest-dk); }

/* ---------- edit-me callouts ---------- */
.edit-note {
  background: #f3e2e6;
  border: 1px solid #d3a3ae;
  border-left: 5px solid var(--colour-gold);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.92rem;
  color: #5c2536;
  margin: 18px 0;
}
.edit-note strong { color: #8c3a52; }

/* ---------- amenities list ---------- */
.amenity-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px 20px;
}
.amenity-list li {
  padding-left: 28px;
  position: relative;
}
.amenity-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--colour-river);
  font-weight: bold;
}

/* ---------- info table ---------- */
.info-table { width: 100%; border-collapse: collapse; }
.info-table td, .info-table th {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--colour-stone-dk);
}
.info-table th { width: 40%; color: var(--colour-forest-dk); }

/* ---------- footer ---------- */
footer.site-footer {
  background: var(--colour-forest-dk);
  color: rgba(255,255,255,0.85);
  padding: 44px 0 26px;
  margin-top: 60px;
}
footer.site-footer a { color: #fff; }
.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 26px;
}
.footer-grid h4 { color: #fff; font-size: 1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 18px;
  font-size: 0.85rem;
  text-align: center;
  opacity: 0.8;
}

/* ---------- misc ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 760px) { .two-col { grid-template-columns: 1fr; } }

.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 16px 0; }
.badge {
  background: var(--colour-stone-dk);
  color: var(--colour-forest-dk);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.qr-box {
  background: var(--colour-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
}
.qr-box canvas { margin: 0 auto 14px; }

.print-btn {
  background: var(--colour-forest);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

@media print {
  .site-header, footer.site-footer, .no-print { display: none !important; }
  body { background: #fff; }
}

.iframe-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.iframe-wrap iframe { width: 100%; border: 0; display: block; }
