/* =====================================================
   SedonaEpicStays — Holiday Theme Overlays  v1.1
   -----------------------------------------------------
   Activated by holiday-theme.js adding a body class
   (e.g. body.theme-christmas). Inert with no class.

   v1.1: each theme now overrides BOTH variable sets in
   use across the site —
     homepage set:  --fire --fire-deep --ember --night
                    --dusk --stone --warm
     property/tool set: --fire --dark --stone --muted
   Pages only pick up the variables they actually use,
   so this is harmless everywhere and themes carry to
   property pages automatically (--fire is shared).
   ===================================================== */

/* ---------- effect canvas (snow / sparkle) ---------- */
#holiday-fx{
  position:fixed;
  inset:0;
  z-index:400;              /* under nav (500) and modals */
  pointer-events:none;
}
@media (prefers-reduced-motion: reduce){
  #holiday-fx{display:none}
}

/* =====================================================
   CHRISTMAS — cranberry + antique gold, snowfall
   ===================================================== */
body.theme-christmas{
  --fire:#A8322A;
  --fire-deep:#7F221C;
  --ember:#D9B45B;
}
body.theme-christmas .hero-grad{
  background:
    linear-gradient(to top, rgba(14,10,8,1) 0%, rgba(14,10,8,.62) 40%, rgba(14,10,8,.18) 100%),
    linear-gradient(to right, rgba(14,10,8,.5) 0%, transparent 60%);
}

/* =====================================================
   NEW YEAR'S — champagne gold, sparkle
   ===================================================== */
body.theme-newyear{
  --fire:#A8862B;
  --fire-deep:#836820;
  --ember:#E7CE8A;
}

/* =====================================================
   VALENTINE'S — rose & wine
   ===================================================== */
body.theme-valentine{
  --fire:#A62C4C;
  --fire-deep:#7E1F39;
  --ember:#E39CB0;
}

/* =====================================================
   4TH OF JULY — brand fire stays; themed ticker only
   ===================================================== */
body.theme-july4{
  /* intentionally no palette shift */
}

/* =====================================================
   HALLOWEEN — dusk purples, amber glow
   ===================================================== */
body.theme-halloween{
  --fire:#C4571A;
  --fire-deep:#9A4212;
  --ember:#F0942E;
  /* homepage backgrounds */
  --night:#120B1A;
  --dusk:#251732;
  --stone:#352145;
  --warm:#1B1226;
  /* property/tool-page backgrounds */
  --dark:#150E20;
}
body.theme-halloween::before{opacity:.03}

/* =====================================================
   THANKSGIVING — harvest golds
   ===================================================== */
body.theme-thanksgiving{
  --fire:#B5641E;
  --fire-deep:#8C4B14;
  --ember:#DFA94E;
}
