/* Nav (floating) */
.nav-float {
	position: fixed;
	top: 24px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 40px;
	z-index: 100;
	pointer-events: none;
	opacity: 1;
	transition: opacity 0.6s;
	will-change: transform;
	transform: translateZ(0);
}

.nav-float.visible { opacity: 1; }

.nav-logo {
	font-family: 'Playfair Display', serif;
	font-size: 18px;
	color: var(--color-heading, rgba(245, 250, 230, 0.8));
	letter-spacing: 1px;
	pointer-events: auto;
	cursor: pointer;
}

.nav-links {
	display: flex;
	gap: 28px;
	pointer-events: auto;
}

.nav-links a {
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--color-body, rgba(215, 230, 190, 0.55));
	text-decoration: none;
	transition: color 0.3s;
	font-weight: 500;
}

.nav-links a:hover { color: var(--color-accent, rgba(230, 245, 120, 0.95)); }

/* Hamburger button */
.nav-hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
	pointer-events: auto;
	z-index: 200;
}
.nav-hamburger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--color-body, rgba(215, 230, 190, 0.7));
	border-radius: 2px;
	transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile overlay */
.nav-mobile-overlay {
	display: none;
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(8, 12, 5, 0.95);
	z-index: 99;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 32px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}
.nav-mobile-overlay.open {
	opacity: 1;
	pointer-events: auto;
}
.nav-mobile-overlay a {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--color-body, rgba(215, 230, 190, 0.7));
	text-decoration: none;
	transition: color 0.3s;
	font-weight: 500;
}
.nav-mobile-overlay a:hover {
	color: var(--color-accent, rgba(230, 245, 120, 0.95));
}
