/* ==========================
   AURIGA DELTA HEADER
========================== */

.auriga-header {

	background: #08142d;

	border-bottom: 1px solid rgba(251,191,36,.15);

	padding: 1rem 2rem;

	position: sticky;

	top: 0;

	z-index: 999;

	backdrop-filter: blur(16px);

	-webkit-backdrop-filter: blur(16px);

}

.auriga-header-inner {

	display: flex;

	align-items: center;

	justify-content: space-between;

	max-width: 1320px;

	margin: 0 auto;

}

.auriga-brand {

	display: flex;

	align-items: center;

    filter: drop-shadow(
		0 0 12px rgba(251,191,36,.25)
	);


}

.auriga-logo {

	width: 280px !important;

	max-width: none !important;

	display: block;

    transition: transform .3s ease;

}

.auriga-logo:hover {

	transform: scale(1.03);

}

/* Navigation */

.wp-block-navigation {

	gap: 2rem;

}

.wp-block-navigation a {

	color: #ffffff;

	text-decoration: none;

	font-weight: 500;

	transition: .25s ease;

}

.wp-block-navigation a:hover {

	color: #FBBF24;

}

.auriga-home-link {

	display: inline-block;

	text-decoration: none;

}

.auriga-home-link:hover {

	transform: scale(1.02);

	transition: transform .25s ease;

}

/* Navigation */

.wp-block-navigation a {

	position: relative;

	color: rgba(255,255,255,.92);

	text-decoration: none;

	font-weight: 500;

	padding-bottom: .35rem;

	transition: all .3s ease;

}


/* Hover */

.wp-block-navigation a:hover {

	color: #FBBF24;

}

/* Navigation Links */

.wp-block-navigation-item__content {

	color: rgba(255,255,255,.92) !important;

	text-decoration: none;

	font-weight: 500;

	font-size: 1rem;

	letter-spacing: .03em;

	transition: all .25s ease;

}


/* Hover */

.wp-block-navigation-item__content:hover {

	color: #FBBF24 !important;

}



/* Goldener Unterstrich */

.wp-block-navigation a::after {

	content: "";

	position: absolute;

	left: 0;

	bottom: 0;

	width: 0;

	height: 2px;

	background: #FBBF24;

	border-radius: 2px;

	transition: width .3s ease;

}


.wp-block-navigation a:hover::after {

	width: 100%;

}

