/* Navigation Bar */
nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 5%;
	background: rgba(15, 23, 42, 0.9);
	backdrop-filter: blur(10px);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	border-bottom: 1px solid rgba(94, 234, 212, 0.1);
}

.logo img {
	height: 2.5rem;
	filter: drop-shadow(0 0 5px rgba(6, 182, 212, 0.5));
}

.nav-items {
	display: flex;
	list-style: none;
	gap: 10rem;
}

.nav-items li a {
	color: var(--color-text-main);
	text-decoration: none;
	font-weight: 500;
	font-size: 1.25rem;
	transition: color 0.3s;
	position: relative;
	padding: 0.5rem 0;
}

.nav-items li a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--color-accent);
	transition: width 0.3s;
}

.nav-items li a:hover {
	color: var(--color-accent);
}

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

.nav-button .button {
	background: var(--color-button-bg);
	color: var(--color-button-text);
	border: none;
	border-radius: 30px;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
	transition: all 0.3s;
	text-decoration: none;
}

.nav-button .button:hover {
	background: var(--color-button-hover-bg);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(6, 182, 212, 0.3);
}

.nav-button .button .icon img {
	height: 1.2rem;
	filter: invert(1);
}
