/* ============================================================
   Header: Navigation, Logo
   Astra Pro verwaltet das Layout — hier nur Overrides
   ============================================================ */

/* Force Anthrazit header background (overrides Astra Pro addon inline CSS) */
.ast-primary-header-bar,
.ast-primary-header-bar.ast-primary-header,
.main-header-bar {
	background-color: var(--color-base) !important;
}

/* Navigation Link Hover-Underline */
.ast-header-sections-navigation .menu-item > a {
	position: relative;
	transition: color 0.2s ease;
}

.ast-header-sections-navigation .menu-item > a::after {
	content: '';
	display: block;
	width: 0;
	height: 2px;
	background: var(--color-accent-red);
	transition: width 0.3s ease;
	position: absolute;
	bottom: 0;
	left: 0;
}

.ast-header-sections-navigation .menu-item > a:hover::after {
	width: 100%;
}

/* Aktiver Menuepunkt */
.ast-header-sections-navigation .current-menu-item > a::after {
	width: 100%;
	background: var(--color-accent-red);
}
