/* Navbar Styles */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(255, 253, 250, 0.75);
	backdrop-filter: saturate(180%) blur(20px);
	-webkit-backdrop-filter: saturate(180%) blur(20px);
	border-bottom: 1px solid rgba(248, 180, 0, 0.15);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
}

.container.navbar {
	max-width: 1320px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	letter-spacing: 0.4px;
}

.logo-badge {
	width: 28px;
	height: 28px;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--accent), var(--primary));
	box-shadow: 0 8px 18px rgba(248,180,0,0.09);
}

.logo-img { 
	height: 46px; 
	width: auto; 
	max-width: 180px;
	object-fit: contain;
	display: block;
}

.nav-links {
	display: flex;
	gap: 20px;
	align-items: center;
}

.nav-links a {
	color: var(--muted);
	font-weight: 500;
	padding: 6px 12px;
	border-radius: 8px;
	transition: background 0.3s ease, color 0.3s ease;
	position: relative;
}

.nav-links a::after {
	content: '';
	position: absolute;
	left: 0; 
	bottom: -6px; 
	height: 2px; 
	width: 0%;
	background: linear-gradient(90deg, var(--primary), var(--primary-2));
	transition: width 250ms ease;
}

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

.nav-links a:hover {
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: var(--text);
}

.nav-cta {
	display: flex;
	gap: 10px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 100;
}

.mobile-menu-toggle span {
	width: 24px;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 960px) {
	.nav-links { 
		display: none;
		position: fixed;
		top: 64px;
		left: 0;
		right: 0;
		background: rgba(255, 253, 250, 0.98);
		backdrop-filter: saturate(180%) blur(20px);
		-webkit-backdrop-filter: saturate(180%) blur(20px);
		flex-direction: column;
		padding: 24px;
		gap: 16px;
		border-bottom: 2px solid var(--border);
		box-shadow: 0 10px 40px rgba(0,0,0,0.1);
		z-index: 999;
	}
	
	.nav-links.active {
		display: flex;
	}
	
	.nav-links a {
		padding: 12px 16px;
		border-radius: 10px;
		width: 100%;
	}
	
	.nav-links a::after {
		display: none;
	}
	
	.nav-cta {
		display: none;
	}
	
	.mobile-menu-toggle {
		display: flex;
	}
	
	.nav-links .mobile-cta {
		display: flex;
		flex-direction: column;
		gap: 12px;
		width: 100%;
		margin-top: 8px;
		padding-top: 16px;
		border-top: 1px solid var(--border);
	}
	
	.nav-links .mobile-cta .btn {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 720px) {
	.navbar { height: 56px; }
	.logo span { font-size: 14px; }
	.logo-img { height: 40px !important; width: auto !important; max-width: 150px !important; }
	.nav-links { top: 56px !important; }
}

