/* =====================================================================
   Site skins — alternate color palettes for the guest-facing site
   (public booking pages + guest portal). Each skin only overrides CSS
   custom properties already defined in style.css's :root block, so the
   layout, typography, and spacing are identical across every skin —
   only the palette changes. Applied via a data-skin attribute on <body>,
   set from the "site_skin" setting in admin/settings.php.

   The default look ("forest") needs no override here at all — it's
   already what :root defines in style.css, so choosing it is a no-op.
   ===================================================================== */

/* ---- Coastal — deep navy & weathered gold, a working-harbor B&B ---- */
[data-skin="coastal"] {
  --forest: #1F4E5C;
  --forest-dark: #163740;
  --ivory: #F4F1E8;
  --line: #DDD9C8;
  --brass: #B8935E;
  --brass-dark: #93723F;
  --clay: #A64B3E;
  --ink: #1C2B2E;
  --ink-soft: #5C6E70;
}

/* ---- Autumn — maple & harvest gold, fitting for a fall-foliage region ---- */
[data-skin="autumn"] {
  --forest: #5C2E2E;
  --forest-dark: #401F1F;
  --ivory: #FAF3E6;
  --line: #E9DCC7;
  --brass: #C6862E;
  --brass-dark: #9C6A1F;
  --clay: #8B3A2B;
  --ink: #2E2320;
  --ink-soft: #6E5D53;
}

/* ---- Midnight — indigo & muted gold, an evening/boutique feel ---- */
[data-skin="midnight"] {
  --forest: #1B2340;
  --forest-dark: #12172C;
  --ivory: #F0EEF6;
  --line: #DBD8E8;
  --brass: #C9A54A;
  --brass-dark: #A6843A;
  --clay: #B0495F;
  --ink: #201F2E;
  --ink-soft: #5C5A72;
}
