/* /assets/css/navbar.css */

.site-nav {
	background: rgba(17, 13, 26, 0.88);
	backdrop-filter: blur(14px) saturate(140%);
	-webkit-backdrop-filter: blur(14px) saturate(140%);
	position: sticky;
	top: 0;
	z-index: 200;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 8px 24px rgba(17, 10, 30, 0.18);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	color: white;
	font-size: 1.02rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	text-decoration: none;
	white-space: nowrap;
	transition: opacity 0.15s ease;
}

.nav-logo:hover {
	opacity: 0.9;
}

.nav-logo-mark {
	border-radius: 9px;
	display: block;
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(83, 47, 153, 0.35);
}

.nav-logo-text {
	font-family: "Fraunces", "Hind Siliguri", serif;
	font-weight: 600;
}

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

.nav-links a {
	color: rgba(255, 255, 255, 0.72);
	padding: 9px 14px;
	border-radius: 9px;
	font-size: 0.92rem;
	font-weight: 500;
	transition:
		background 0.18s ease,
		color 0.18s ease;
	display: block;
	position: relative;
}

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

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

.nav-links a.active::after {
	content: "";
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 5px;
	height: 2px;
	border-radius: 2px;
	background: #b794f6;
}

.nav-call-item {
	margin-left: 6px;
}

.nav-links .nav-call {
	background: linear-gradient(135deg, #6b3fc4, #532f99);
	color: white;
	border-radius: 999px;
	padding: 9px 16px 9px 13px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 7px;
	box-shadow: 0 3px 10px rgba(83, 47, 153, 0.4);
	transition:
		transform 0.18s ease,
		box-shadow 0.18s ease,
		background 0.18s ease;
}

.nav-call-icon {
	width: 15px;
	height: 15px;
	flex-shrink: 0;
}

.nav-links .nav-call:hover {
	background: linear-gradient(135deg, #7c4dd9, #5f37ab);
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(83, 47, 153, 0.5);
	color: white;
}

.nav-links .nav-call:active {
	transform: translateY(0);
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
	border-radius: 8px;
	transition: background 0.15s ease;
}

.nav-toggle:hover {
	background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
	display: block;
	width: 21px;
	height: 2px;
	background: white;
	border-radius: 2px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

	.nav-links {
		display: flex;
		position: fixed;
		top: 60px;
		left: 0;
		right: 0;
		height: calc(100vh - 60px);
		height: calc(100dvh - 60px);
		z-index: 199;
		background: #110d1a;
		flex-direction: column;
		align-items: stretch;
		padding: 14px 16px 24px;
		gap: 4px;
		overflow-y: auto;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
		transform: translateY(-8px);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition:
			opacity 0.22s ease,
			transform 0.22s ease,
			visibility 0.22s;
	}

	.nav-links.open {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

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

	.nav-links a {
		width: 100%;
		padding: 14px 16px;
		font-size: 1rem;
	}

	.nav-call-item {
		margin-left: 0;
		margin-top: 10px;
	}

	.nav-links .nav-call {
		justify-content: center;
		padding: 14px 16px;
	}

	.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);
	}
}
