/* Theme System - Easy toggle between themes */
/* To switch themes, add/remove class on <body> tag */
/* Example: <body class="theme-christmas"> or <body> for default */

/* Thanksgiving Theme - Warm autumn colors */
body.theme-thanksgiving {
	--bg: #1a1410;
	--bg-elev: #241d18;
	--bg-dark: #120e0a;
	--text: #f5e6d3;
	--muted: #c4a882;
	--brand: #d2691e;
	--accent: #cd853f;
	--border: #3d2e20;
	--shadow: rgba(0,0,0,0.4);
	--red-accent: #b8860b;
	--green-accent: #8b7355;
	--blue-accent: #a0522d;
}

/* Christmas Theme - Festive red, green, and gold */
body.theme-christmas {
	--bg: #0d1410;
	--bg-elev: #151f1a;
	--bg-dark: #080f0b;
	--text: #e8f5e9;
	--muted: #a5c9a8;
	--brand: #c62828;
	--accent: #ff6b6b;
	--border: #1b3d2e;
	--shadow: rgba(0,0,0,0.4);
	--red-accent: #c62828;
	--green-accent: #2e7d32;
	--blue-accent: #ffd700;
}

