@charset "utf-8";

/* CSS Document */
/* =========================
CONTAINER
========================= */
.container {
	width: min(1450px, 92%);
	margin: auto;
}

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 92px;
	background: rgba(255, 255, 255, .86);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(255, 255, 255, .5);
	z-index: 999;
	box-shadow: 0 4px 20px rgba(0,0,0,.05), 0 1px 2px rgba(0,0,0,.03);
}

.nav-inner {
	height: 92px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo img {
	height: 55px;
}


.nav-links {
	display: flex;
	gap: 36px;
}

.nav-links a {
	text-decoration: none;
	color: #222;
	font-size: 15px;
	font-weight: 500;
	position: relative;
}

.nav-links a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #ff3f9f, #c93fff);
	transition: .35s ease;
}

.nav-links a:hover::after {
	width: 100%;
}
.nav-links a.active {
	color: #ff3f9f !important;
}

.nav-btn {
	height: 56px;
	padding: 0 28px;
	border-radius: 18px;
	background: linear-gradient(135deg, #ff3f9f, #c93fff);
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	font-weight: 600;
	color: #fff;
	box-shadow: 0 15px 35px rgba(255, 60, 150, .22);
	transition: .35s ease;
}

.nav-btn:hover {
	transform: translateY(-5px);
}