/**
 * Karvex Auto - the small number of rules that cannot be expressed through
 * Elementor global classes or block settings.
 *
 * Everything on the five designed pages is styled by Elementor global classes.
 * This file exists only for the theme header, where Car Dealer Shop styles the
 * navigation anchors directly and WordPress emits `color: inherit` on them at
 * a specificity block settings cannot beat.
 *
 * The class is repeated in the selector to raise specificity above both of
 * those rules without resorting to !important.
 *
 * Keep this file minimal. If a rule can live in an Elementor global class,
 * put it there instead.
 */

/* Navigation links: the design's near-black at rest. */
header .wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content {
	color: var(--ink, #0A1017);
}

/* Accent on hover and keyboard focus. */
header .wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content:hover,
header .wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content:focus-visible {
	color: var(--accent, #E54130);
}

/* The page you are on stays accent, so the nav shows where you are. */
header .wp-block-navigation .current-menu-item > .wp-block-navigation-item__content.wp-block-navigation-item__content {
	color: var(--accent, #E54130);
}
