/* /assets/css/navbar.css */
.site-nav {
	background: #111;
	position: sticky;
	top: 0;
	z-index: 200;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.site-nav {
	background: #111;
	position: sticky;
	top: 0;
	z-index: 200;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.nav-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 16px;
	height: 56px;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	color: white;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 4px;
	align-items: center;
}

.nav-links a {
	color: rgba(255, 255, 255, 0.8);
	padding: 8px 14px;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 500;
	transition:
		background 0.15s,
		color 0.15s;
	display: block;
}

.nav-links a:hover,
.nav-links a.active {
	background: rgba(255, 255, 255, 0.1);
	color: white;
}

.nav-links .nav-call {
	background: #22c55e;
	color: white;
	border-radius: 999px;
	padding: 8px 16px;
	font-weight: 700;
}

.nav-links .nav-call:hover {
	background: #16a34a;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: white;
	border-radius: 2px;
	transition: all 0.3s ease;
}

/* MOBILE NAV */
@media (max-width: 600px) {
	.nav-toggle {
		display: flex;
	}

	.nav-links {
		display: none;
		position: absolute;
		top: 56px;
		left: 0;
		right: 0;
		background: #111;
		flex-direction: column;
		padding: 12px 16px 20px;
		gap: 4px;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
	}

	.nav-links.open {
		display: flex;
	}

	.nav-links li {
		width: 100%;
	}

	.nav-links a {
		width: 100%;
	}

	.nav-toggle[aria-expanded="true"] span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.nav-toggle[aria-expanded="true"] span:nth-child(2) {
		opacity: 0;
	}

	.nav-toggle[aria-expanded="true"] span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}
}
