/* Master navbar — semantic classes (replaces Figma .Frame_3_343 / .HEADER_344 / .Blog_350 …) */

.site-header {
	position: absolute;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100px;
	box-sizing: border-box;
}

.site-header__layer {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 10000;
}

.site-header__bar {
	position: absolute;
	inset: 0;
	background: #ffffff;
	border-radius: 0;
}

.site-header__logo {
	position: absolute;
	left: clamp(1rem, 20.4vw, 298px);
	top: 50%;
	transform: translateY(-50%);
	z-index: 10001;
	display: block;
	line-height: 0;
	text-decoration: none;
}

.site-header__logo img {
	display: block;
	height: 100px;
	width: auto;
	max-width: min(130px, 50vw);
}

.site-header__menu-icon {
	position: absolute;
	right: 295px;
	top: 26px;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #000;
	cursor: pointer;
	z-index: 10001;
}

.site-header__menu-svg,
.site-header__menu-burger {
	position: absolute;
	left: 0;
	top: 0;
	width: 48px;
	height: 48px;
	pointer-events: none;
}

.site-header__menu-burger {
	left: 6px;
	top: 8px;
	width: 36px;
	height: 32px;
}

.main-nav {
	position: relative;
	z-index: 10000;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding-right: 380px;
	box-sizing: border-box;
}

.nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: clamp(1.5rem, 4.5vw, 5.5rem);
}

.nav-item {
	margin: 0;
	padding: 0;
}

/* Typography aligned with former .HEADER_344 > … nav labels */
.nav-link {
	font-family: var(--font-sans);
	font-weight: 400;
	font-style: normal;
	font-size: 15px;
	line-height: 1;
	letter-spacing: 0;
	color: #000000;
	text-decoration: none;
	cursor: pointer;
	user-select: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	white-space: nowrap;
}

.nav-link:hover {
	font-weight: 600;
}

.nav-link.is-active,
.nav-link[aria-current="page"] {
	font-weight: 700;
}

.anchor-target {
	position: absolute;
	left: 0;
	top: 0;
	width: 1px;
	height: 1px;
	pointer-events: none;
	scroll-margin-top: 120px;
}

/* === MOBİL NAV PANELİ === */
@media (max-width: 1023px) {
	.site-header {
		height: 88px;
	}

	.site-header__logo {
		left: 16px;
	}

	.site-header__logo img {
		height: 76px;
		max-width: none;
	}

	.site-header__menu-icon {
		right: 16px;
		top: 20px;
	}

	.main-nav {
		display: none;
		position: fixed;
		inset: 0;
		background: #ffffff;
		z-index: 10002;
		padding: 120px 40px 40px;
		box-sizing: border-box;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		overflow-y: auto;
	}

	.main-nav[aria-expanded="true"] {
		display: flex !important;
	}

	.nav-list {
		flex-direction: column;
		align-items: center;
		gap: 32px;
		width: 100%;
	}

	.nav-link {
		font-size: 24px;
		font-weight: 500;
		color: #141414;
	}
}
