nav {
	position: fixed;
	top: 0;
	width: 100%;
	padding: 1.5rem 3rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 100;
	backdrop-filter: blur(10px);
	border-bottom: 1px solid transparent;
	transition: all 0.3s ease;
}

nav.scrolled {
	background: var(--glass-bg);
	border-bottom: 1px solid var(--glass-border);
	padding: 1rem 3rem;
}

header {
    flex-shrink: 0;
}

.navbar {
	padding: 1rem 2rem;
}

.brand {
	font-family: 'Lucida Handwriting', sans-serif;
	font-weight: 800;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
}

.brand-dot {
	width: 8px;
	height: 8px;
	background: var(--accent-primary);
	border-radius: 50%;
	box-shadow: 0 0 10px var(--accent-primary);
}

.nav-items {
	display: flex;
	gap: 2.5rem;
}

.nav-link {
	text-decoration: none;
	color: var(--text-muted);
	font-size: 0.9rem;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-link:hover {
	color: var(--text-main);
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
	transition: width 0.3s ease;
}

.nav-link:hover::after {
	width: 100%;
}

.cta-btn {
	padding: 0.6rem 1.2rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--glass-border);
	border-radius: 6px;
	color: var(--text-main);
	font-size: 0.9rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.cta-btn:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--accent-primary);
	transform: translateY(-2px);
}

/* ==========================
   MOBILE NAVBAR
   ========================== */
@media (max-width: 768px) {

	nav {
		padding: 0.5rem 1rem;  /* kompakter */
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.nav-items {
		display: none; /* Hamburger Menü */
	}

	.hamburger {
		display: block;
		width: 24px;
		height: 24px;
		cursor: pointer;
		position: relative;
	}

	.hamburger span {
		position: absolute;
		height: 2px;
		width: 100%;
		background: var(--text-main);
		left: 0;
		transition: all 0.3s ease;
	}
	.hamburger span:nth-child(1) { top: 0; }
	.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
	.hamburger span:nth-child(3) { bottom: 0; }

	.brand {
		font-size: 1.2rem;
	}
	.cta-btn {
		padding: 0.4rem 0.8rem;
		font-size: 0.85rem;
		text-decoration: none;
	}
}