/* [tolto_menu] — egyszerű sticky fejléc (design-forrás: a statikus sablon header/nav blokkja). */

header.tolto-menu {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(245, 243, 238, 0.9);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	border-bottom: 1px solid rgba(52, 66, 79, 0.14);
}

.tolto-menu__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 32px;
	max-width: 1160px;
	margin: 0 auto;
}

.tolto-menu__logo {
	font-family: "EB Garamond", Georgia, serif;
	font-size: 24px;
	color: #34424F;
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.tolto-menu__logo span {
	font-family: "Quicksand", system-ui, sans-serif;
	font-size: 10px;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: #587089;
	font-weight: 600;
	margin-top: 6px;
}

/* Linkek. */
.tolto-menu__linkek ul {
	display: flex;
	gap: 32px;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.tolto-menu__linkek a {
	font-family: "Quicksand", system-ui, sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #5C6C73;
	position: relative;
	padding: 4px 0;
	text-decoration: none;
}

/* Aláhúzás-animáció hoverre. */
.tolto-menu__linkek a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 1px;
	width: 0;
	background: #C17F57;
	transition: width 0.3s ease;
}

.tolto-menu__linkek a:hover::after {
	width: 100%;
}

/* CTA — a 'nav-cta' CSS osztályú menüelem (li) gombként jelenik meg. */
.tolto-menu__linkek .nav-cta > a {
	font-weight: 600;
	font-size: 14px;
	background: #C17F57;
	color: #FFFFFF;
	padding: 11px 22px;
	border-radius: 30px;
	transition: background 0.25s ease, transform 0.2s ease;
}

.tolto-menu__linkek .nav-cta > a::after {
	content: none;
}

.tolto-menu__linkek .nav-cta > a:hover {
	background: #A86A46;
	transform: translateY(-1px);
}

/* Horgonyokra ugráskor a sticky fejléc ne fedje a célszekciót. */
[id] {
	scroll-margin-top: 96px;
}
