/*
 * Liturgical palette overrides for seasons and special days.
 *
 * The "accent" preset slugs default to Ordinary Time green (theme.json).
 * Each <body class="liturgical-season-..."> swaps in the appropriate
 * liturgical color, which cascades through every theme.json reference to
 * --wp--preset--color--accent[-deep|-soft] — links, buttons, header
 * border, and the front-page hero overlay all follow.
 *
 * Ordinary Time uses the theme.json defaults; no override needed.
 *
 * Special days (see SPECIAL_DAYS in functions.php) reuse the same body
 * class shape — the slug becomes `liturgical-season-{slug}` whether it
 * names a season or a feast day.
 */

body.liturgical-season-advent,
body.liturgical-season-lent {
	--wp--preset--color--accent: #351c4d;
	--wp--preset--color--accent-deep: #1d0f2c;
	--wp--preset--color--accent-soft: #7a5a99;
}

body.liturgical-season-christmas,
body.liturgical-season-easter {
	--wp--preset--color--accent: #e2b81f;
	--wp--preset--color--accent-deep: #a78715;
	--wp--preset--color--accent-soft: #f0d877;
}

body.liturgical-season-pentecost {
	--wp--preset--color--accent: #8b1a1a;
	--wp--preset--color--accent-deep: #5e0f0f;
	--wp--preset--color--accent-soft: #c25555;
}

body.liturgical-season-good-friday {
	--wp--preset--color--accent: #6b1414;
	--wp--preset--color--accent-deep: #3d0a0a;
	--wp--preset--color--accent-soft: #a23838;
}
