/* Normalized Navigation Bar Styles */
.nav-bar {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 50;
	background-color: rgba(252, 249, 248, 0.8);
	backdrop-filter: blur(12px);
	font-family: var(--headline-font);
}

.nav-bar .title {
	font-weight: 700;
	font-size: 1.25rem;
	letter-spacing: -0.05em;
	width: max(10vw, 200px);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 2rem;
	max-width: 100%;
	margin: 0 auto;
}

.nav-links {
	display: none;
	gap: 2.5rem;
	align-items: center;
}

@media (min-width: 768px) {
	.nav-links {
		display: flex;
	}
}

.nav-link {
	font-weight: 500;
	letter-spacing: 0.2em;
	font-size: 12px;
	text-transform: uppercase;
	transition: all 0.3s ease;
	opacity: 0.6;
}

.nav-link:hover {
	opacity: 1;
	letter-spacing: 0.25em;
}

.nav-link.active {
	color: var(--secondary);
	opacity: 1;
	border-bottom: 1px solid var(--secondary);
	padding-bottom: 4px;
}

.mobile-menu-btn {
	display: block;
	border: none;
	background: none;
	cursor: pointer;
}

@media (min-width: 768px) {
	.mobile-menu-btn {
		display: none;
	}
}
