/* ==================================================================
   Landhaus – Navigation (Design: /design/navbar.jsx)
   Schwebende Nav: transparent über dem Hero, ab 72px Scroll (.is-solid)
   Akzent-Pille mit Blur. Dropdown als Creme-Panel, Saison-Toggle mit
   Sonne/Schneeflocke, Mobile-Drawer von rechts.
   ================================================================== */

/* ---------- Listen-Reset für alle Landhaus-Menüs ---------- */

.lh-nav-bar ul,
.lh-nav-bar li,
.lh-drawer ul,
.lh-drawer li,
.lh-footer ul,
.lh-footer li,
ul.lh-footer__menu li,
ul.lh-legal-menu li {
	list-style: none !important;
	margin: 0;
	padding: 0;
}

.lh-nav-bar li::marker,
.lh-drawer li::marker,
.lh-footer li::marker {
	content: none;
}

/* ---------- Nav-Grundgerüst ---------- */

.lh-nav-bar {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 28px clamp(20px, 4vw, 64px);
	background: transparent;
	font-family: var(--lh-font-sans);
	transition: top 0.6s cubic-bezier(0.32, 0.72, 0, 1),
		left 0.6s cubic-bezier(0.32, 0.72, 0, 1),
		right 0.6s cubic-bezier(0.32, 0.72, 0, 1),
		padding 0.6s cubic-bezier(0.32, 0.72, 0, 1),
		background 0.6s cubic-bezier(0.32, 0.72, 0, 1),
		border-radius 0.6s cubic-bezier(0.32, 0.72, 0, 1),
		box-shadow 0.6s cubic-bezier(0.32, 0.72, 0, 1);
}

body.admin-bar .lh-nav-bar {
	top: 32px;
}

/* Solid-Zustand: schwebende Akzent-Pille */
.lh-nav-bar.is-solid,
body.lh-nav-static .lh-nav-bar {
	top: 16px;
	left: clamp(16px, 3vw, 32px);
	right: clamp(16px, 3vw, 32px);
	padding: 8px 12px 8px 20px;
	background: rgba(112, 141, 171, 0.95);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border-radius: 999px;
	box-shadow: 0 8px 40px -12px rgba(43, 38, 33, 0.22), 0 0 0 1px rgba(112, 141, 171, 0.25);
}

body.admin-bar .lh-nav-bar.is-solid,
body.admin-bar.lh-nav-static .lh-nav-bar {
	top: 48px;
}

/* Logo */
.lh-nav-bar__logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.lh-nav-bar__logo a {
	display: flex;
	align-items: center;
	text-decoration: none !important;
}

.lh-nav-bar__logo img {
	height: 56px !important;
	width: auto !important;
	max-height: none !important;
	max-width: none !important;
	display: block;
	transition: height 0.6s cubic-bezier(0.32, 0.72, 0, 1);
}

.lh-nav-bar.is-solid .lh-nav-bar__logo img,
body.lh-nav-static .lh-nav-bar__logo img {
	height: 36px !important;
}

@media (max-width: 640px) {
	.lh-nav-bar__logo img {
		height: 40px !important;
	}

	.lh-nav-bar.is-solid .lh-nav-bar__logo img,
	body.lh-nav-static .lh-nav-bar__logo img {
		height: 32px !important;
	}
}

.lh-logo-text {
	font-family: var(--lh-font-serif);
	font-style: italic;
	font-size: 24px;
	color: var(--lh-warmweiss);
	text-decoration: none !important;
	white-space: nowrap;
}

/* ---------- Desktop-Menü ---------- */

ul.lh-nav-bar__menu {
	display: none;
	align-items: center;
	gap: clamp(24px, 2.5vw, 32px);
}

@media (min-width: 1024px) {
	ul.lh-nav-bar__menu {
		display: flex;
	}
}

.lh-nav-item {
	position: relative;
}

.lh-nav-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 0;
	color: var(--lh-warmweiss) !important;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	font-weight: 500;
	opacity: 0.9;
	text-decoration: none !important;
	transition: opacity 0.3s ease;
	cursor: pointer;
}

.lh-nav-link:hover {
	opacity: 1;
}

.lh-nav-link .lh-chevron {
	width: 11px;
	height: 11px;
	flex-shrink: 0;
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.lh-nav-item--drop:hover .lh-nav-link .lh-chevron,
.lh-nav-item--drop:focus-within .lh-nav-link .lh-chevron {
	transform: rotate(180deg);
}

/* Unterstrich, wächst von links */
.lh-nav-link__line {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 1px;
	background: rgba(255, 253, 248, 0.7);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.5s ease-out;
}

.lh-nav-link:hover .lh-nav-link__line,
.lh-nav-item--drop:hover .lh-nav-link__line,
.lh-nav-item--drop:focus-within .lh-nav-link__line {
	transform: scaleX(1);
}

/* ---------- Dropdown (Creme-Panel) ---------- */

.lh-dropdown {
	position: absolute;
	top: 100%;
	left: 50%;
	padding-top: 16px;
	transform: translateX(-50%) translateY(10px) scale(0.96);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.24s cubic-bezier(0.22, 1, 0.36, 1), transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
	z-index: 200;
}

.lh-nav-item--drop:hover .lh-dropdown,
.lh-nav-item--drop:focus-within .lh-dropdown {
	opacity: 1;
	transform: translateX(-50%) translateY(0) scale(1);
	pointer-events: auto;
}

.lh-dropdown__panel {
	background: var(--lh-creme);
	border: 1px solid rgba(43, 38, 33, 0.1);
	border-radius: 20px;
	box-shadow: 0 28px 72px -12px rgba(43, 38, 33, 0.2), 0 8px 24px -6px rgba(43, 38, 33, 0.1), inset 0 1px 0 rgba(255, 253, 248, 0.6);
	padding: 6px;
	min-width: 240px;
	overflow: hidden;
	color: var(--lh-kamin);
}

.lh-dropdown__head {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 16px 8px;
	margin-bottom: 2px;
	border-bottom: 1px solid rgba(43, 38, 33, 0.07);
}

.lh-dropdown__rule {
	display: block;
	height: 1px;
	flex: 1;
	background: rgba(43, 38, 33, 0.15);
}

.lh-dropdown__title {
	font-size: 8.5px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	font-weight: 600;
	color: rgba(43, 38, 33, 0.38);
	white-space: nowrap;
}

.lh-dropdown__item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 11px 16px;
	border-radius: 14px;
	text-decoration: none !important;
	transition: background 0.18s ease;
}

.lh-dropdown__item:hover {
	background: rgba(43, 38, 33, 0.055);
}

.lh-dropdown__num {
	font-family: var(--lh-font-serif);
	font-style: italic;
	font-weight: 300;
	font-size: 22px;
	line-height: 1;
	color: var(--lh-kamin);
	min-width: 28px;
	user-select: none;
}

.lh-dropdown__text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.lh-dropdown__label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	font-weight: 600;
	color: var(--lh-kamin);
	line-height: 1;
}

.lh-dropdown__sub {
	font-family: var(--lh-font-serif);
	font-style: italic;
	font-weight: 300;
	font-size: 14px;
	color: var(--lh-kamin);
	line-height: 1.2;
}

/* ---------- Rechter Cluster ---------- */

.lh-nav-bar__right {
	display: flex;
	align-items: center;
	gap: clamp(12px, 1.5vw, 20px);
	flex-shrink: 0;
}

.lh-nav-bar__phone {
	display: none;
	color: var(--lh-warmweiss) !important;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	font-weight: 500;
	opacity: 0.9;
	text-decoration: none !important;
	transition: opacity 0.3s ease;
}

.lh-nav-bar__phone:hover {
	opacity: 1;
}

@media (min-width: 1280px) {
	.lh-nav-bar__phone {
		display: inline-flex;
	}
}

/* Saison-Toggle (Icon-Pill) */
.lh-nav-bar__season {
	display: none;
}

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

.lh-season-toggle {
	display: flex;
	align-items: center;
	gap: 2px;
	border: 1px solid rgba(255, 253, 248, 0.22);
	border-radius: 999px;
	padding: 3px;
}

.lh-season-toggle__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	color: rgba(255, 253, 248, 0.38);
	background: transparent;
	text-decoration: none !important;
	transition: background 0.3s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.lh-season-toggle__btn svg {
	width: 14px;
	height: 14px;
}

.lh-season-toggle__btn.is-active {
	background: rgba(255, 253, 248, 0.18);
	color: #FFFDF8;
}

.lh-nav-bar.is-solid .lh-season-toggle__btn.is-active,
body.lh-nav-static .lh-season-toggle__btn.is-active {
	background: rgba(255, 253, 248, 0.22);
}

/* Helle Variante (Drawer) */
.lh-season-toggle--light {
	border-color: rgba(43, 38, 33, 0.12);
	width: 100%;
	gap: 3px;
}

.lh-season-toggle--light .lh-season-toggle__btn {
	flex: 1;
	width: auto;
	height: auto;
	padding: 10px 0;
	border-radius: 999px;
	color: rgba(43, 38, 33, 0.4);
}

.lh-season-toggle--light .lh-season-toggle__btn svg {
	width: 16px;
	height: 16px;
}

.lh-season-toggle--light .lh-season-toggle__btn.is-active {
	background: rgba(112, 141, 171, 0.15);
	color: var(--lh-akzentdunkel);
}

/* Buchen-Pill */
.lh-nav-bar__cta {
	display: none;
	align-items: center;
	gap: 12px;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	font-weight: 600;
	padding: 5px 5px 5px 24px;
	border-radius: 999px;
	text-decoration: none !important;
	background: var(--lh-akzent);
	color: var(--lh-warmweiss) !important;
	transition: background 0.3s ease, color 0.3s ease;
}

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

.lh-nav-bar__cta:hover {
	background: var(--lh-fensterladen);
}

.lh-nav-bar__cta-arrow {
	display: inline-flex;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: rgba(255, 253, 248, 0.1);
	transition: background 0.3s ease;
}

.lh-nav-bar__cta:hover .lh-nav-bar__cta-arrow {
	background: rgba(255, 253, 248, 0.2);
}

.lh-nav-bar__cta-arrow svg {
	width: 12px;
	height: 12px;
}

/* Im Solid-Zustand: heller Button */
.lh-nav-bar.is-solid .lh-nav-bar__cta,
body.lh-nav-static .lh-nav-bar__cta {
	background: var(--lh-warmweiss);
	color: var(--lh-akzentdunkel) !important;
}

.lh-nav-bar.is-solid .lh-nav-bar__cta:hover,
body.lh-nav-static .lh-nav-bar__cta:hover {
	background: var(--lh-creme);
}

.lh-nav-bar.is-solid .lh-nav-bar__cta-arrow,
body.lh-nav-static .lh-nav-bar__cta-arrow {
	background: rgba(82, 111, 141, 0.1);
}

.lh-nav-bar.is-solid .lh-nav-bar__cta:hover .lh-nav-bar__cta-arrow,
body.lh-nav-static .lh-nav-bar__cta:hover .lh-nav-bar__cta-arrow {
	background: rgba(82, 111, 141, 0.2);
}

/* Burger (mobil) */
.lh-nav-bar__burger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0 !important;
	border-radius: 50% !important;
	border: 1px solid rgba(255, 253, 248, 0.4) !important;
	background: transparent;
	color: var(--lh-warmweiss);
	line-height: 1;
	cursor: pointer;
	transition: background 0.5s ease;
}

.lh-nav-bar__burger:hover {
	background: rgba(255, 253, 248, 0.1);
}

.lh-nav-bar__burger svg {
	width: 20px;
	height: 20px;
}

@media (min-width: 1024px) {
	.lh-nav-bar__burger {
		display: none;
	}
}

/* Inhalt unter der Pille auf Seiten ohne Hero */
body.lh-nav-static #ajax-content-wrap {
	padding-top: 110px;
}

/* ---------- Mobile Drawer ---------- */

.lh-drawer-backdrop {
	position: fixed;
	inset: 0;
	z-index: 1090;
	background: rgba(43, 38, 33, 0.6);
	backdrop-filter: blur(4px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s ease;
}

.lh-drawer-backdrop.is-open {
	opacity: 1;
	pointer-events: auto;
}

.lh-drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1100;
	width: 88%;
	max-width: 384px;
	background: var(--lh-creme);
	color: var(--lh-kamin);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	transform: translateX(100%);
	transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
	overflow-y: auto;
	font-family: var(--lh-font-sans);
	padding-bottom: 90px;
}

.lh-drawer.is-open {
	transform: translateX(0);
}

.lh-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 28px 28px 0;
}

.lh-drawer__eyebrow {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.32em;
	color: var(--lh-holz);
}

.lh-drawer__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(43, 38, 33, 0.15);
	background: transparent;
	color: var(--lh-kamin);
	cursor: pointer;
	transition: background 0.3s ease;
}

.lh-drawer__close:hover {
	background: rgba(43, 38, 33, 0.05);
}

.lh-drawer__close svg {
	width: 20px;
	height: 20px;
}

ul.lh-drawer__menu {
	display: flex;
	flex-direction: column;
	margin: 40px 28px 0;
}

.lh-drawer__item {
	border-bottom: 1px solid rgba(43, 38, 33, 0.1);
}

.lh-drawer__link,
.lh-drawer__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 20px 0;
	background: transparent;
	border: 0;
	font-family: var(--lh-font-serif);
	font-style: italic;
	font-weight: 300;
	font-size: 30px;
	line-height: 1;
	color: var(--lh-kamin);
	text-decoration: none !important;
	cursor: pointer;
	transition: color 0.3s ease;
	text-align: left;
}

.lh-drawer__link:hover,
.lh-drawer__toggle:hover {
	color: var(--lh-fensterladen);
}

.lh-drawer__toggle .lh-chevron {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.lh-drawer__item.is-open .lh-drawer__toggle .lh-chevron {
	transform: rotate(180deg);
}

ul.lh-drawer__sub {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.lh-drawer__item.is-open ul.lh-drawer__sub {
	max-height: 320px;
}

.lh-drawer__sub-link {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 9px 0;
	text-decoration: none !important;
}

.lh-drawer__sub li:last-child .lh-drawer__sub-link {
	padding-bottom: 18px;
}

.lh-drawer__sub-num {
	font-family: var(--lh-font-serif);
	font-style: italic;
	font-weight: 300;
	font-size: 18px;
	color: rgba(43, 38, 33, 0.22);
	line-height: 1;
	min-width: 24px;
}

.lh-drawer__sub-label {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	font-weight: 500;
	color: rgba(43, 38, 33, 0.75);
	line-height: 1;
}

.lh-drawer__sub-sub {
	display: block;
	font-family: var(--lh-font-serif);
	font-style: italic;
	font-weight: 300;
	font-size: 12px;
	color: rgba(43, 38, 33, 0.4);
	margin-top: 3px;
}

.lh-drawer__foot {
	margin: 40px 28px 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.lh-drawer__cta {
	display: inline-flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--lh-fensterladen);
	color: var(--lh-warmweiss) !important;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	font-weight: 600;
	padding: 16px 0;
	border-radius: 999px;
	text-decoration: none !important;
	transition: background 0.3s ease;
}

.lh-drawer__cta:hover {
	background: var(--lh-garten);
}

.lh-drawer__cta svg {
	width: 14px;
	height: 14px;
}

.lh-drawer__phone {
	display: block;
	text-align: center;
	color: rgba(43, 38, 33, 0.6) !important;
	font-size: 14px;
	letter-spacing: 0.02em;
	text-decoration: none !important;
}

.lh-drawer__pin {
	position: absolute;
	bottom: 28px;
	left: 28px;
	right: 28px;
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgba(43, 38, 33, 0.45);
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.22em;
}

.lh-drawer__pin svg {
	width: 14px;
	height: 14px;
}

body.lh-drawer-open {
	overflow: hidden;
}

/* ---------- Skip-Link ---------- */

.lh-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 10000;
	background: var(--lh-dunkel);
	color: var(--lh-warmweiss);
	padding: 10px 18px;
}

.lh-skip-link:focus {
	left: 0;
}

/* ---------- Footer ----------
   Die Footer-Styles (Design-Struktur mit CTA-Strip und Linkspalten)
   liegen in sections.css. */
