@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 65px;
	padding: 10px 40px;
	background: rgba(0, 0, 0, 0.85);
	display: flex;
	justify-content: space-between;
	align-items: center;
	backdrop-filter: blur(10px);
	border-bottom: 2px solid rgba(138, 0, 0, 0.5);
	z-index: 1000;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(138, 0, 0, 0.2),
		transparent
	);
	transition: 0.5s;
}

.header:hover::before {
	left: 100%;
}

.h-logo {
	color: #fff;
	font-size: 22px;
	text-decoration: none;
	font-weight: 600;
	display: flex;
	align-items: center;
}

.h-navbar {
	display: flex;
	align-items: center;
}

.h-navbar a {
	color: #ffffff;
	font-size: 14px;
	text-decoration: none;
	margin-left: 35px;
	transition: all 0.3s ease;
	padding: 8px 15px;
	border-radius: 5px;
	font-weight: 500;
}

.h-navbar a:hover {
	color: #ff4444;
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}
