/*
 * Elite in a week - sen-ed kitchen customisations
 * Written once, never edited per area. The area's colour arrives as --eiaw-colour
 * (set in the page head by the plugin) and the current logo is marked by the plugin.
 */

/* 1. Logos: every logo is in the page, only the current area's is shown. */
.eiaw-logo:not(.eiaw-logo--current) {
	display: none !important;
}
.custom-logo-link img.eiaw-logo {
	height: auto; /* logos with different proportions keep their shape */
}

/* 2. Colour: feed the area colour into Astra and Elementor. */
body,
body[class*="elementor-kit"] {
	--eiaw-colour-dark: color-mix(in srgb, var(--eiaw-colour) 80%, #000); /* handy for hover states */
	--ast-global-color-0: var(--eiaw-colour);      /* Astra: Accent (links, buttons) */
	--e-global-color-primary: var(--eiaw-colour);  /* Elementor: Global Colors > Primary */
}
