/*
 * Općina Bogdanovci — brand shade variants.
 *
 * The 11 picker-managed base colors are set via the opcina_tema/color_defaults
 * filter in functions.php. These are the derived primary/accent shades that live
 * only in the parent tokens.css; redefining them here lets the child own the full
 * palette. Loaded after the parent stylesheet (dependency: opcina-tema).
 *
 * TODO (owner): if you change `primary`/`accent` in functions.php, regenerate the
 * shades below from the new base colour so the UI stays coherent.
 */
:root {
	/* Primary shade scale derived from the base #2c5282 (the colour actually
	   painted across the UI). */
	--mt-color-primary-hover: #3969a7;
	--mt-color-primary-contrast: #ffffff;
	--mt-color-primary-soft: rgba(44, 82, 130, 0.1);
	--mt-color-primary-deep: #193457;
	--mt-color-primary-light: #7398ca;
	--mt-color-primary-100: #e1e9f4;
	--mt-color-primary-tint: #f0f4f9;
	--mt-color-primary-rgb: 44, 82, 130;

	/* Secondary (white) button hover tint — a 10% primary wash. */
	--mt-color-secondary-hover: rgba(44, 82, 130, 0.1);

	--mt-color-accent-bright: #2a6e3b;
	--mt-color-accent-100: #e6f1e1;
	--mt-color-accent-rgb: 30, 90, 48;
}
