/* ===== ZNHS Header Navigation Styles ===== */

/* Nav list container */
.znhs-nav-list {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Nav item */
.znhs-nav-item {
	margin: 0;
	padding: 0;
}

/* Nav link */
.znhs-nav-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 6px 12px;
	border-radius: 6px;
	font-family: 'Source Sans 3', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	transition: background-color 0.2s, color 0.2s;
	white-space: nowrap;
}

.znhs-nav-link:hover {
	background-color: rgba(255, 255, 255, 0.10);
	color: #ffffff;
}

.znhs-nav-link.is-active {
	color: #ffffff;
}

/* Red underline */
.znhs-nav-underline {
	display: block;
	margin-top: 2px;
	height: 2px;
	width: 20px;
	border-radius: 9999px;
	background-color: #cc0000;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
	.znhs-nav-list {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
	}
	.znhs-nav-link {
		width: 100%;
		align-items: flex-start;
	}
	.znhs-nav-link.is-active {
		background-color: rgba(255, 255, 255, 0.10);
	}
}

/* ===== Global: hide page titles ===== */
.page-header { display: none !important; }
.site-main .entry-title { display: none !important; }
.znhs-cta-pulse {
	animation: znhs-cta-pulse 2s infinite;
}

@keyframes znhs-cta-pulse {
	0%, 100% {
		box-shadow: 0 0 0 0 rgba(204, 0, 0, 0.45);
	}
	50% {
		box-shadow: 0 0 0 12px rgba(204, 0, 0, 0);
	}
}

/* ===== Language Switcher ===== */
.znhs-lang-switcher {
	display: flex;
	align-items: center;
	gap: 2px;
	padding: 4px 8px;
	border: 1px solid rgba(255,255,255,0.25);
	border-radius: 6px;
	font-size: 12px;
}
.znhs-lang-btn {
	padding: 2px 6px;
	border-radius: 4px;
	font-family: 'Source Sans 3', sans-serif;
	font-size: 11px;
	font-weight: 700;
	color: rgba(255,255,255,0.5);
	text-decoration: none;
	transition: color 0.2s, background 0.2s;
}
.znhs-lang-btn:hover {
	color: #ffffff;
	background: rgba(255,255,255,0.1);
}
.znhs-lang-btn.is-active {
	color: #ffffff;
	background: rgba(255,255,255,0.15);
}
.znhs-lang-sep {
	color: rgba(255,255,255,0.3);
	font-size: 11px;
	user-select: none;
}

/* ===== CTA Button (bilingual) ===== */
.znhs-cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 18px;
	border-radius: 6px;
	background-color: #CC0000;
	color: #FFFFFF;
	font-family: 'Raleway', sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	transition: background-color 0.3s, transform 0.3s;
}
.znhs-cta-btn:hover {
	background-color: #FFFFFF;
	color: #CC0000;
	transform: scale(1.03);
}
