/* =====================================================
   QUICK NAV (MODERN)
===================================================== */
.quick-nav {
	position: sticky;
	top: 4rem;
	margin-top: 0 !important;
	z-index: 1000;
	background-color: #fff;
	/*background: linear-gradient(to top, rgb(242, 169, 0), oklch(87.989% 0.15345 89.785));*/
	border-bottom: 1px solid rgba(0,0,0,0.08);
}

.quick-nav-inner {
	display: flex;
	align-items: center;
	width: 100%;
	margin: 0 auto;
	padding: 0 1rem;
	position: relative;
}

.brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
	text-decoration: none;
	text-align: center;
	letter-spacing: 2px;
	transition: transform 0.7s ease-in;
}

/* Top line */
.brand-top {
	font-size: 1.33rem;
	color: #44474d;
	font-weight: 900;
	filter:
    drop-shadow(0 0 0 currentColor)
	drop-shadow(0 0 0 currentColor)
    drop-shadow(0 0 0 currentColor);
	margin-bottom: 0;
	
}

/* Bottom line */
.brand-bottom {
	font-size: .9rem;
	font-weight: 700;
	text-transform: uppercase;
	color: #6b7280;
}

.brand-text:hover .brand-top {
	transform: scale(1.25) !important;
}

/* Links */
.quick-nav-links {
	display: flex;
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.quick-nav-links a {
	text-decoration: none;
	color: #374151;
	font-size: 1rem;
	font-weight: 550;
	padding-bottom: 0.25rem;
	border-bottom: 2px solid transparent;
	transition: all 0.2s ease;
}

.quick-nav-links a:hover {
	color: #0077cc;
	border-bottom: 2px solid #0077cc;
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 900px) {
	.quick-nav-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.quick-nav-links {
		flex-wrap: wrap;
		gap: 0.75rem 1rem;
	}
}