/* ============================================================
   WOODSTAR BEACH HOUSE — client theme
   Palette: pearl-white paper · deep navy ink · sapphire accent
   Fonts:   Cormorant Garamond (display) · Manrope (sans)
   Re-maps the core CSS variables so the shared booking pages
   (property detail, checkout, payment) adopt the Woodstar look.
   ============================================================ */
:root {
  /* Woodstar palette */
  --night: #f7f9fc;
  --ink-navy: #0e2a47;
  --sapphire: #2c5a87;
  --sapphire-deep: #1a3d5e;
  --muted: #6f87a3;

  /* bv-* design tokens (used by core pages) */
  --bv-charcoal: #0e2a47;
  --bv-ink: #0e2a47;
  --bv-cream: #f7f9fc;
  --bv-cream-2: #eef3f8;
  --bv-sand: #dbe6f1;
  --bv-sandstone: #2c5a87;
  --bv-sage: #6f87a3;
  --bv-sage-deep: #1a3d5e;
  --bv-rust: #1a3d5e;
  --bv-copper: #2c5a87;
  --bv-copper-soft: #3a6e9e;
  --bv-line: rgba(14, 42, 71, .12);
  --bv-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --bv-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* legacy named variables mapped to Woodstar */
  --green: #0e2a47;
  --green-dark: #1a3d5e;
  --green-light: #6f87a3;
  --green-pale: #eef3f8;
  --gold: #2c5a87;
  --gold-light: #3a6e9e;
  --silver: #2c5a87;
  --silver-light: #6f87a3;
  --cream: #f7f9fc;
  --cream-dk: #eef3f8;
  --brown: #0e2a47;
  --brown-mid: #1a3d5e;
  --text-dark: #0e2a47;
  --text-mid: #2c4a72;
  --text-dull: #1a3d5e;
  --text-muted: #6f87a3;
  --heading-font: "Cormorant Garamond", Georgia, serif;
  --body-font: "Manrope", -apple-system, sans-serif;
  --font-third: "Cormorant Garamond", Georgia, serif;
}

body {
  font-family: var(--bv-sans);
  color: var(--bv-ink);
  background: var(--bv-cream);
}

/* ============================================================
   Harmonize booking-core pages to the Woodstar design:
   content section headings adopt the serif display face
   (Cormorant) instead of the clone's sans, so stay/checkout
   pages feel identical to the bespoke pages.
   ============================================================ */
.detail-page-title,
.host-info > h2,
.about-section > h2,
.property-field-section > h2,
.amenities-section > h2,
.property-calendar-section > h2,
.map-section > h2,
.property-policies-section > h2,
.reviews-section > h2,
.stays-page-body .retreats-title,
.stays-page-body .rp-name,
.checkout-page h1, .checkout-page h2,
.checkout h1, .checkout-title,
.summary-card h2, .booking-summary h2 {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}
