header {
	position: relative;
	padding: 0 3rem;

	/*position: fixed;
	width: 100%;
	z-index: 1000;
	padding: 0 3rem;*/

	/*backdrop-filter: blur(16px);
	background: rgba(27, 39, 63, 0.7);*/

	/*background: linear-gradient(var(--bg3), var(--bg2));*/
	background: var(--back);
	box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.25);
	border-bottom: 1px solid var(--back);
}

.navbar {
	height: 4rem;

	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
}

.navbar .logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: white;
	font-weight: 800;
	font-size: 1.5em;
	transition: all 0.3s;
}

.navbar .logo:hover {
	transform: scale(1.05);
}

.navbar .logo img {
	width: 32px;
	height: 32px;
	margin-right: 10px;
}

.navbar .links {
	display: flex;
	gap: 20px;
}

.navbar .links .navbtn {
	display: flex;
	align-items: center;
	text-decoration: none;
	font-weight: 600;
	color: white;
	padding: 10px 20px;
	border-radius: 5px;
	transition: background-color 0.3s, transform 0.3s;
}

.navbar .links .navbtn:hover {
	transform: scale(1.1);
}

.navbar .links .navbtn img {
	width: 24px;
	height: 24px;
	margin-right: 10px;
}

@media (max-width: 768px) {
	header {
		padding: 0 1rem;
	}

	.navbar .links {
		gap: 0;
	}

	.navbar .links .navbtn span {
		display: none;
	}

	.navbar .links .navbtn img {
		margin-right: 0;
	}
}

.login-btn {
	background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: #fff;
	border-radius: 6px;
	padding: 8px 18px;
	display: inline-flex;
	align-items: center;
	font-weight: 600;
	box-shadow: 0 2px 8px rgba(79, 140, 255, 0.08);
	transition: background 0.2s, box-shadow 0.2s;
	border: none;
	margin-left: 10px;
	cursor: pointer;
}

.login-btn:hover {
	box-shadow: 0 4px 16px rgba(79, 140, 255, 0.16);
	text-decoration: none;
}

.profile-btn a:hover {
	transform: scale(1.1);
}

.profile-btn img {
	width: 40px;
	height: 40px;

	border-radius: 50%;
	object-fit: cover;
	display: inline-block;

	outline-offset: 2px;
	outline: 2px solid rgba(255, 255, 255, 0.8);
}