/* ═══════════════════════════════════════════
   Camping Leutesdorf — Theme Styles
   ═══════════════════════════════════════════ */

:root {
	--header-height: 80px;
	--header-height-scrolled: 60px;
	--color-forest: #2b6c3d;
	--color-lime: #9abe29;
	--color-dark: #1a2e1a;
	--color-text-soft: #5a6a52;
	--color-muted: #8a9a80;
	--ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
	--ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
	box-sizing: border-box;
}

body {
	overflow-x: hidden;
}

/* ── Section Labels ──────────────────────── */

.section-label {
	text-align: center;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--color-lime);
}

.section-label--light {
	color: rgba(255, 255, 255, 0.7);
}

/* ── Header ──────────────────────────────── */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.is-front-page .site-header,
.is-inner-page .site-header {
	background: transparent;
}

.site-header.is-scrolled {
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.header-inner {
	max-width: 1200px;
	margin: 0 auto;
	height: var(--header-height);
	transition: height 0.4s var(--ease-smooth);
	align-items: center;
}

.site-header.is-scrolled .header-inner {
	height: var(--header-height-scrolled);
}

/* Logo */
.brand-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	height: 100%;
}

.logo-main {
	display: block;
	height: 64px;
	width: auto;
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.logo-sticky {
	display: none;
	height: 22px;
	width: auto;
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.is-front-page .logo-main {
	filter: brightness(0) invert(1);
	height: 78px;
	margin-top: 2.75rem;
}

.is-inner-page .logo-main {
	height: 78px;
	margin-top: 2.75rem;
}

@media (max-width: 781px) {
	.is-front-page .logo-main {
		filter: none;
		height: 56px;
		margin-top: 0;
	}

	.is-inner-page .logo-main {
		height: 64px;
		margin-top: 0.5rem;
	}
}

.site-header.is-scrolled .logo-main {
	display: none;
}

.site-header.is-scrolled .logo-sticky {
	display: block;
	filter: brightness(0);
}

/* Nav links */
.main-nav .wp-block-navigation__container {
	gap: 2rem;
}

.is-front-page .main-nav,
.is-inner-page .main-nav {
	margin-top: 0.8rem;
}

.site-header.is-scrolled .main-nav {
	margin-top: 0;
}

.is-front-page .main-nav a.wp-block-navigation-item__content {
	color: rgba(255, 255, 255, 0.92);
}

.is-front-page .main-nav a.wp-block-navigation-item__content:hover {
	color: #fff;
}

.is-inner-page .main-nav a.wp-block-navigation-item__content {
	color: var(--color-dark);
}

.is-inner-page .main-nav a.wp-block-navigation-item__content:hover {
	color: var(--color-forest);
}

.site-header.is-scrolled .main-nav a.wp-block-navigation-item__content {
	color: var(--color-dark);
}

.site-header.is-scrolled .main-nav a.wp-block-navigation-item__content:hover {
	color: var(--color-forest);
}

.main-nav a.wp-block-navigation-item__content {
	position: relative;
	transition: color 0.3s ease;
	padding: 0.3rem 0;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.main-nav a.wp-block-navigation-item__content::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--color-lime);
	transition: width 0.3s var(--ease-out-expo), left 0.3s var(--ease-out-expo);
}

.main-nav a.wp-block-navigation-item__content:hover::after {
	width: 100%;
	left: 0;
}

/* Mobile nav toggle: white on front page, dark on inner pages */
.is-front-page .wp-block-navigation__responsive-container-open {
	color: #fff;
}

.is-inner-page .wp-block-navigation__responsive-container-open {
	color: var(--color-dark);
}

.site-header.is-scrolled .wp-block-navigation__responsive-container-open {
	color: var(--color-dark);
}

/* ── Hero (static image) ─────────────────── */

.hero-section {
	position: relative;
	height: 100vh;
	min-height: 600px;
	max-height: 1000px;
	overflow: hidden;
	margin-top: calc(-1 * var(--header-height));
}

.hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover !important;
	background-position: center center !important;
	animation: heroZoom 4s ease-out forwards;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(26, 46, 26, 0.1) 0%,
		rgba(26, 46, 26, 0.25) 40%,
		rgba(26, 46, 26, 0.65) 80%,
		rgba(26, 46, 26, 0.82) 100%
	);
	z-index: 1;
}

.hero-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	padding: 0 2rem 14%;
}

.hero-badge {
	text-align: center;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 1.2rem;
}

.hero-title {
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.1;
	text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
	margin-bottom: 1.2rem;
}

.hero-subtitle {
	color: rgba(255, 255, 255, 0.8);
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.7;
	font-size: 1.15rem;
}

/* Hero buttons */
.hero-buttons.wp-block-buttons {
	gap: 1rem;
}

.hero-btn-primary .wp-block-button__link {
	font-weight: 700;
	font-size: 0.95rem;
	padding: 1rem 2.5rem;
	box-shadow: 0 4px 20px rgba(154, 190, 41, 0.3);
	transition: all 0.3s var(--ease-smooth);
}

.hero-btn-primary .wp-block-button__link:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(154, 190, 41, 0.45);
}

.hero-btn-outline .wp-block-button__link {
	border: 2px solid rgba(255, 255, 255, 0.4) !important;
	color: #fff !important;
	background: transparent !important;
	font-size: 0.95rem;
	padding: 1rem 2.5rem;
	transition: all 0.3s var(--ease-smooth);
}

.hero-btn-outline .wp-block-button__link:hover {
	background: rgba(255, 255, 255, 0.12) !important;
	border-color: rgba(255, 255, 255, 0.7) !important;
	transform: translateY(-2px);
}

/* Scroll hint arrow */
.hero-scroll-hint {
	position: absolute;
	bottom: 2.5rem;
	left: 50%;
	z-index: 3;
	display: flex;
	text-decoration: none;
	opacity: 0;
	animation: arrowFadeIn 0.8s 0.6s ease forwards, arrowFloat 2.4s 1.4s ease-in-out infinite;
	transform: translateX(-50%);
	transition: opacity 0.3s ease;
}

.hero-scroll-hint:hover svg {
	opacity: 0.5;
}

html {
	scroll-behavior: smooth;
}

/* ── Kacheln / Cards ─────────────────────── */

.kacheln-section .wp-block-columns {
	align-items: stretch;
}

.kacheln-section .wp-block-column {
	display: flex;
}

.kachel-link {
	text-decoration: none;
	color: inherit;
	display: flex;
	width: 100%;
}

.kachel-card {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: transform 0.5s var(--ease-out-expo),
	            box-shadow 0.5s var(--ease-out-expo);
	background: #fff;
	display: flex;
	flex-direction: column;
	width: 100%;
}

.kachel-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}

.kachel-img {
	height: 220px;
	flex-shrink: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.6s var(--ease-out-expo);
	position: relative;
	overflow: hidden;
}

.kachel-card:hover .kachel-img {
	transform: scale(1.05);
}

.kachel-card--red .kachel-img::after,
.kachel-card--yellow .kachel-img::after,
.kachel-card--green .kachel-img::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 6px;
	z-index: 1;
}

.kachel-card--red .kachel-img::after { background: #e8533e; }
.kachel-card--yellow .kachel-img::after { background: #f5c842; }
.kachel-card--green .kachel-img::after { background: var(--color-lime); }

.kachel-body {
	padding: 1.8rem 1.6rem 2rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.kachel-body h3 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	margin: 0 0 0.6rem;
	color: var(--color-dark);
}

.kachel-body p {
	font-size: 0.9rem;
	line-height: 1.65;
	color: var(--color-text-soft);
	margin: 0;
	flex: 1;
}

.kachel-action {
	display: block;
	margin-top: 1.2rem;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--color-forest);
	transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.kachel-card:hover .kachel-action {
	color: var(--color-lime);
	letter-spacing: 0.03em;
}

/* ── Features ────────────────────────────── */

.feature-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.feature-icon {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: var(--wp--preset--color--light, #f4f7f0);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-forest);
	transition: background 0.3s ease, transform 0.3s ease;
}

.feature-item:hover .feature-icon {
	background: var(--color-lime);
	color: #fff;
	transform: scale(1.05);
}

/* ── CTA Section ─────────────────────────── */

.cta-section {
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(26, 46, 26, 0.75) 0%,
		rgba(26, 46, 26, 0.85) 100%
	);
	z-index: 0;
}

.cta-section > * {
	position: relative;
	z-index: 1;
}

.cta-section .is-style-outline .wp-block-button__link {
	border: 2px solid rgba(255, 255, 255, 0.4) !important;
	color: #fff !important;
	background: transparent !important;
}

.cta-section .is-style-outline .wp-block-button__link:hover {
	border-color: rgba(255, 255, 255, 0.7) !important;
	background: rgba(255, 255, 255, 0.1) !important;
}

/* ── Footer ──────────────────────────────── */

.site-footer {
	background: var(--color-dark);
}

.footer-brand {
	display: inline-block;
}

.footer-logo-img {
	opacity: 0.85;
	transition: opacity 0.3s ease;
}

.footer-brand:hover .footer-logo-img {
	opacity: 1;
}

.footer-links {
	list-style: none;
	padding-left: 0 !important;
}

.footer-links li {
	list-style: none;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: var(--color-lime);
}

.footer-heading {
	font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ── Inner Page Title ─────────────────────── */

.page-banner {
	position: relative;
	overflow: hidden;
	background: #fff !important;
	box-shadow: inset 0 -1px 0 #eef2ea;
}

.page-banner .wp-block-post-title {
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--color-forest) !important;
	margin: 0;
}

.page-banner .wp-block-post-title::after {
	content: '';
	display: block;
	width: 56px;
	height: 3px;
	background: var(--color-lime);
	border-radius: 2px;
	margin: 0.9rem auto 0;
}

/* ── Page Round Hero (single image) ──────── */

.page-hero-image {
	display: none;
	width: 340px;
	height: 340px;
	margin: 1rem auto 2.5rem;
	border-radius: 50%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: #f4f7f0;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
	opacity: 0;
	transform: translateY(28px);
	animation: heroImageFadeUp 0.9s var(--ease-out-expo) 0.1s forwards;
}

.is-page-campingplatz .page-hero-image,
.is-page-biergarten .page-hero-image,
.is-page-freizeit-aktivitaeten .page-hero-image {
	display: block;
}

.is-page-campingplatz .page-hero-image {
	background-image: url('../img/aerial-platz-spielplatz.jpg');
	border: 3px solid #e8533e;
}

.is-page-biergarten .page-hero-image {
	background-image: url('../img/biergarten-oase-aussen.jpg');
	border: 3px solid #f5c842;
}

.is-page-freizeit-aktivitaeten .page-hero-image {
	background-image: url('../img/biergarten-oase-vorgarten.jpg');
	border: 3px solid var(--color-lime);
}

@media (max-width: 600px) {
	.page-hero-image {
		width: 240px;
		height: 240px;
		margin-bottom: 2rem;
	}
}


/* ── Price Table ─────────────────────────── */

.price-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95rem;
	border-radius: 12px;
	overflow: hidden;
}

.price-table thead {
	background: var(--color-forest);
	color: #fff;
}

.price-table th {
	padding: 0.9rem 1.2rem;
	text-align: left;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 700;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.price-table td {
	padding: 0.8rem 1.2rem;
	border-bottom: 1px solid #eef2ea;
}

.price-table tbody tr:hover {
	background: #f4f7f0;
}

.price-table .price-value {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 700;
	color: var(--color-forest);
}

/* ── Info Cards ──────────────────────────── */

.info-card {
	background: var(--wp--preset--color--light, #f4f7f0);
	border-radius: 16px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
}

.info-card h3,
.info-card h4 {
	margin-top: 0;
}

/* ── Content Sections (inner pages) ───────── */

.content-section {
	padding: 2.5rem 0;
}

.content-section + .content-section {
	border-top: 1px solid #eef2ea;
}

.content-section-title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 800;
	font-size: 1.75rem;
	text-align: center;
	color: var(--color-forest);
	margin: 0 0 0.6rem;
	letter-spacing: -0.01em;
}

.content-section-intro {
	text-align: center;
	color: #5a6a52;
	max-width: 640px;
	margin: 0 auto 2.5rem;
	line-height: 1.7;
	font-size: 1rem;
}

.content-lead {
	text-align: center;
	color: #3d4a36;
	font-size: 1.1rem;
	line-height: 1.75;
	max-width: 720px;
	margin: 0 auto 1.5rem;
}

/* ── Uniform Card Grid ────────────────────── */

.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
	align-items: stretch;
}

/* Stagger reveal for cards inside any grid container */
.card-grid > .animate-on-scroll:nth-child(3n+2),
.bare-grid > .animate-on-scroll:nth-child(3n+2),
.hours-blocks > .animate-on-scroll:nth-child(2),
.pricelist-stack > .animate-on-scroll:nth-child(2) {
	transition-delay: 0.12s;
}

.card-grid > .animate-on-scroll:nth-child(3n+3),
.bare-grid > .animate-on-scroll:nth-child(3n+3),
.hours-blocks > .animate-on-scroll:nth-child(3),
.pricelist-stack > .animate-on-scroll:nth-child(3) {
	transition-delay: 0.24s;
}

.hours-blocks > .animate-on-scroll:nth-child(4),
.pricelist-stack > .animate-on-scroll:nth-child(4) {
	transition-delay: 0.36s;
}

.card-grid--2 {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	max-width: 720px;
	margin: 0 auto;
}

.card-grid--left .attraction-card {
	text-align: left;
}

/* ── Attraction Cards ────────────────────── */

.attraction-card {
	background: #fff;
	border-radius: 16px;
	padding: 1.9rem 1.6rem 1.6rem;
	box-shadow: 0 2px 14px rgba(0,0,0,0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	text-align: center;
	height: 100%;
}

.attraction-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(0,0,0,0.09);
}

.attraction-card h3 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: var(--color-forest);
	font-size: 1.1rem;
	margin: 0 0 0.55rem;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.attraction-card .card-meta {
	display: inline-block;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-lime);
	font-weight: 700;
	margin-bottom: 0.4rem;
}

.attraction-card p {
	color: #5a6a52;
	font-size: 0.93rem;
	line-height: 1.65;
	margin: 0 0 1.2rem;
	flex: 1;
}

.attraction-card .card-link {
	display: inline-block;
	color: var(--color-forest);
	font-weight: 600;
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	text-decoration: none;
	border-bottom: 2px solid var(--color-lime);
	padding: 0 2px 4px;
	margin-top: auto;
	align-self: center;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.attraction-card .card-link:hover {
	color: var(--color-lime);
	border-color: var(--color-forest);
}

/* ── Hours Blocks (grouped) ──────────────── */

.hours-blocks {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 1.25rem;
	max-width: 1100px;
	margin: 0 auto;
	align-items: stretch;
}

.hours-block {
	background: #f4f7f0;
	border-radius: 14px;
	padding: 1.5rem 1.6rem;
	display: flex;
	flex-direction: column;
}

.hours-block-title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 700;
	color: var(--color-forest);
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin: 0 0 1rem;
	padding-bottom: 0.7rem;
	border-bottom: 2px solid rgba(43, 108, 61, 0.12);
}

.hours-line {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 1rem;
	padding: 0.4rem 0;
	font-size: 0.93rem;
	line-height: 1.4;
}

.hours-line + .hours-line {
	border-top: 1px dashed rgba(43, 108, 61, 0.12);
}

.hours-line .day {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 600;
	color: var(--color-forest);
	flex-shrink: 0;
}

.hours-line .time {
	color: #3d4a36;
	font-variant-numeric: tabular-nums;
	text-align: right;
	white-space: nowrap;
}

/* ── Pricelist (grouped, multi-table) ────── */

.pricelist-stack {
	display: grid;
	gap: 1.6rem;
	max-width: 780px;
	margin: 0 auto;
}

.pricelist-group-title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 700;
	color: var(--color-forest);
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	margin: 0 0 0.6rem 0.2rem;
}

.pricelist-table-wrap {
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
}

.pricelist-table-wrap .pricelist-group-title {
	background: var(--color-forest);
	color: #fff;
	margin: 0;
	padding: 0.85rem 1.2rem;
	font-size: 0.78rem;
	letter-spacing: 0.16em;
}

.pricelist-table-wrap .price-table {
	border-radius: 0;
	box-shadow: none;
}

.pricelist-table-wrap .price-table tbody tr:last-child td {
	border-bottom: none;
}

.pricelist-label {
	width: 30%;
}

.pricelist-details {
	color: #5a6a52;
	font-size: 0.9rem;
}

.pricelist-info {
	margin-top: 0.6rem;
	border: 1px solid rgba(43, 108, 61, 0.15);
	border-radius: 8px;
	background: rgba(154, 190, 41, 0.06);
	padding: 0;
	overflow: hidden;
}

.pricelist-info summary {
	cursor: pointer;
	list-style: none;
	padding: 0.5rem 0.85rem;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 0.78rem;
	color: var(--color-forest);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	user-select: none;
	display: flex;
	align-items: center;
	gap: 0.4rem;
	transition: background 0.2s ease;
}

.pricelist-info summary::-webkit-details-marker {
	display: none;
}

.pricelist-info summary::before {
	content: '';
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background-color: var(--color-lime);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Crect x='7' y='3' width='2' height='10' rx='1'/%3E%3Crect x='3' y='7' width='10' height='2' rx='1'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px 12px;
	flex-shrink: 0;
	transition: transform 0.25s ease;
}

.pricelist-info[open] summary::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Crect x='3' y='7' width='10' height='2' rx='1'/%3E%3C/svg%3E");
}

.pricelist-info summary:hover {
	background: rgba(154, 190, 41, 0.12);
}

.pricelist-info ul {
	list-style: none;
	padding: 0.4rem 0.85rem 0.85rem;
	margin: 0;
	font-size: 0.88rem;
	color: #3d4a36;
	line-height: 1.55;
}

.pricelist-info li {
	padding: 0.25rem 0 0.25rem 1rem;
	position: relative;
}

.pricelist-info li::before {
	content: '•';
	color: var(--color-lime);
	position: absolute;
	left: 0;
	font-weight: 700;
}

.pricelist-price {
	text-align: right;
	white-space: nowrap;
	width: 1%;
	padding-right: 1.4rem !important;
}

.pricelist-footnote,
.pricelist-leadnote {
	text-align: center;
	color: var(--color-forest);
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.55;
	max-width: 680px;
}

.pricelist-leadnote {
	color: var(--color-dark);
	font-size: 0.88rem;
	margin: 0 auto 0.6rem;
}

.pricelist-footnote {
	margin: 1.6rem auto 2.5rem;
}

#preise {
	padding-bottom: 1.4rem;
}

.price-examples {
	max-width: 640px;
	margin: 1.6rem auto 0;
	padding: 1.4rem 1.6rem 1.2rem;
	background: rgba(154, 190, 41, 0.08);
	border-left: 4px solid var(--color-lime);
	border-radius: 10px;
}

.price-examples h3 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: var(--color-forest);
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	margin: 0 0 0.9rem;
	font-weight: 700;
}

.price-examples ul {
	list-style: none;
	padding: 0;
	margin: 0 0 1rem;
}

.price-examples li {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 1rem;
	padding: 0.55rem 0;
	border-bottom: 1px dashed rgba(43, 108, 61, 0.18);
}

.price-examples li:last-child {
	border-bottom: none;
}

.price-examples .label {
	color: #3d4a36;
	font-size: 0.95rem;
	line-height: 1.4;
}

.price-examples .amount {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 700;
	color: var(--color-forest);
	font-size: 1rem;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

.price-examples .note {
	color: #5a6a52;
	font-size: 0.85rem;
	line-height: 1.6;
	margin: 0;
}

.price-examples .note strong {
	color: var(--color-forest);
}

.price-examples .lead {
	color: #3d4a36;
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0 0 0.9rem;
}

.price-examples .lead strong {
	color: var(--color-forest);
}

.price-examples .exempt-list {
	list-style: none;
	padding: 0 0 0 0.2rem;
	margin: 0.4rem 0 0.9rem;
}

.price-examples .exempt-list li {
	display: flex;
	justify-content: flex-start;
	gap: 0.55rem;
	padding: 0.25rem 0;
	border-bottom: none;
	color: #3d4a36;
	font-size: 0.92rem;
	line-height: 1.55;
}

.price-examples .exempt-list li::before {
	content: '•';
	color: var(--color-lime);
	font-weight: 700;
	flex-shrink: 0;
}

/* ── Bare grid (no boxes) ────────────────── */

.bare-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2rem 2.5rem;
	max-width: 900px;
	margin: 0 auto;
}

.bare-grid--centered {
	text-align: center;
}

.bare-item {
	display: flex;
	flex-direction: column;
}

.bare-item h3 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: var(--color-forest);
	font-size: 1.1rem;
	margin: 0 0 0.5rem;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.bare-item h3 .bare-item-icon {
	color: var(--color-lime);
	margin-right: 0.5rem;
	font-size: 1.05em;
}

.bare-item p {
	color: #5a6a52;
	font-size: 0.95rem;
	line-height: 1.7;
	margin: 0;
}

/* ── Reviews ─────────────────────────────── */

.reviews-section {
	background: var(--wp--preset--color--light, #f4f7f0);
	padding: 5rem 2rem;
}

.reviews-section .reviews-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 3rem;
}

.reviews-section .reviews-eyebrow {
	display: inline-block;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 700;
	color: var(--color-lime);
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	margin-bottom: 0.6rem;
}

.reviews-section h2 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 2.4rem;
	color: var(--color-forest);
	margin: 0 0 0.8rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.reviews-rating {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	color: #5a6a52;
	font-size: 0.95rem;
}

.reviews-stars {
	color: #f5c842;
	font-size: 1.1rem;
	letter-spacing: 0.05em;
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	max-width: 1100px;
	margin: 0 auto;
}

/* ── Reviews Slider ──────────────────────── */

.reviews-slider {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	overflow: hidden;
	padding: 0.5rem;
}

.reviews-track {
	display: flex;
	transition: transform 0.6s var(--ease-out-expo, ease);
	will-change: transform;
}

.reviews-slide {
	flex: 0 0 100%;
	min-width: 100%;
	padding: 0 0.5rem;
	box-sizing: border-box;
}

.reviews-controls {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.7rem;
	margin-top: 2.6rem;
}

.reviews-dots {
	display: flex;
	justify-content: center;
	gap: 0.55rem;
}

.reviews-dot {
	width: 42px;
	height: 6px;
	background: rgba(43, 108, 61, 0.22);
	border: none;
	border-radius: 3px;
	cursor: pointer;
	transition: background 0.3s ease, width 0.3s ease;
	padding: 0;
	font-size: 0;
}

.reviews-dot:hover {
	background: rgba(43, 108, 61, 0.45);
}

.reviews-dot.is-active {
	background: var(--color-forest);
	width: 68px;
}

.reviews-dot-label {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 0.72rem;
	color: #5a6a52;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 600;
	min-height: 0.9rem;
}

.review-card {
	background: #fff;
	border-radius: 16px;
	padding: 1.8rem 1.6rem;
	box-shadow: 0 2px 14px rgba(0,0,0,0.04);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.review-card .review-stars {
	color: #f5c842;
	letter-spacing: 0.08em;
	font-size: 0.95rem;
}

.review-card blockquote {
	margin: 0;
	color: #3d4a36;
	font-size: 0.98rem;
	line-height: 1.65;
	font-style: italic;
	flex: 1;
}

.review-card .review-author {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-size: 0.85rem;
	color: #5a6a52;
}

.review-card .review-author strong {
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: var(--color-forest);
	font-weight: 600;
}

/* ── Contact / Forms ─────────────────────── */

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 2.5rem;
	align-items: start;
	max-width: 1000px;
	margin: 0 auto;
}

@media (max-width: 781px) {
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

.contact-info {
	background: var(--wp--preset--color--light, #f4f7f0);
	border-radius: 16px;
	padding: 2rem 1.8rem;
}

.contact-info h3 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: var(--color-forest);
	font-size: 1.15rem;
	margin: 0 0 1.2rem;
	font-weight: 700;
}

.contact-info-item {
	display: flex;
	gap: 0.9rem;
	align-items: flex-start;
	margin-bottom: 1rem;
	font-size: 0.95rem;
	color: #3d4a36;
	line-height: 1.5;
}

.contact-info-item .icon {
	flex: 0 0 22px;
	color: var(--color-lime);
	margin-top: 2px;
}

.contact-info-item a {
	color: var(--color-forest);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s ease;
}

.contact-info-item a:hover {
	border-bottom-color: var(--color-lime);
}

.camping-form {
	background: #fff;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 2px 14px rgba(0,0,0,0.05);
}

.camping-form h3 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	color: var(--color-forest);
	font-size: 1.15rem;
	margin: 0 0 1.2rem;
	font-weight: 700;
}

.camping-form .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 1rem;
}

@media (max-width: 600px) {
	.camping-form .form-row {
		grid-template-columns: 1fr;
	}
}

.camping-form label {
	display: block;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 600;
	font-size: 0.82rem;
	color: var(--color-forest);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.35rem;
}

.camping-form input,
.camping-form textarea,
.camping-form select {
	width: 100%;
	padding: 0.7rem 0.9rem;
	border: 1.5px solid #e0e6dc;
	border-radius: 8px;
	font-family: 'DM Sans', sans-serif;
	font-size: 0.95rem;
	color: #1a2e1a;
	background: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.camping-form input:focus,
.camping-form textarea:focus,
.camping-form select:focus {
	outline: none;
	border-color: var(--color-lime);
	box-shadow: 0 0 0 3px rgba(154, 190, 41, 0.18);
}

.camping-form textarea {
	min-height: 130px;
	resize: vertical;
	font-family: 'DM Sans', sans-serif;
}

.camping-form .form-field {
	margin-bottom: 1rem;
}

.camping-form .form-honeypot {
	position: absolute;
	left: -9999px;
	opacity: 0;
	pointer-events: none;
}

.camping-form .form-submit {
	background: var(--color-forest);
	color: #fff;
	border: none;
	padding: 0.95rem 2.2rem;
	border-radius: 50px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.camping-form .form-submit:hover {
	background: #1e4d2b;
	transform: translateY(-2px);
}

.camping-form .form-message {
	margin-top: 1rem;
	padding: 0.85rem 1rem;
	border-radius: 8px;
	font-size: 0.92rem;
}

.camping-form .form-message.success {
	background: rgba(154, 190, 41, 0.15);
	color: #2b6c3d;
	border: 1px solid rgba(154, 190, 41, 0.4);
}

.camping-form .form-message.error {
	background: rgba(232, 83, 62, 0.1);
	color: #b03a28;
	border: 1px solid rgba(232, 83, 62, 0.35);
}

.camping-form .checkbox-row {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-size: 0.85rem;
	color: #5a6a52;
	line-height: 1.5;
	margin-bottom: 1rem;
}

.camping-form .checkbox-row input {
	width: auto;
	margin-top: 3px;
}

/* ── Global Button Polish ────────────────── */

.wp-block-button__link {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 600;
	transition: all 0.3s var(--ease-smooth);
	letter-spacing: 0.01em;
}

.wp-block-button__link:hover {
	transform: translateY(-2px);
}

/* ── Mobile Nav Overlay ───────────────────── */

/* Fullscreen container */
.wp-block-navigation__responsive-container.is-menu-open {
	padding: 0 !important;
	background: #1e4d2b !important;
}

/* Every wrapper in the chain must fill the screen */
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-close {
	height: 100% !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-dialog {
	display: flex !important;
	flex-direction: column !important;
	height: 100% !important;
}

/* X close button — fixed top-right, aligned with hamburger */
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close {
	position: fixed !important;
	top: 0.5rem !important;
	right: 0 !important;
	width: 64px !important;
	height: 64px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: none !important;
	border: none !important;
	cursor: pointer;
	z-index: 100001;
	padding: 0 !important;
	margin: 0 !important;
}

.wp-block-navigation__responsive-container-close svg {
	width: 24px;
	height: 24px;
	fill: #fff;
}

/* Content area — fill remaining space and center links */
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	flex: 1 1 100% !important;
	height: 100% !important;
	padding: 0 !important;
}

/* Nav list — centered column */
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 0 !important;
	width: auto !important;
	height: auto !important;
}

/* Each nav item */
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item {
	display: block !important;
	width: auto !important;
	text-align: center !important;
}

/* Link styling */
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
	font-size: 1.5rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
	padding: 0.9rem 2rem !important;
	display: block !important;
	color: #fff !important;
	text-decoration: none !important;
	transition: opacity 0.3s ease;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:hover {
	opacity: 0.7;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content::after {
	display: none !important;
}

/* ── Responsive ──────────────────────────── */

@media (max-width: 781px) {
	:root {
		--header-height: 64px;
		--header-height-scrolled: 56px;
	}

	.hero-section {
		height: 100svh;
		min-height: 500px;
	}

	.hero-content {
		padding-bottom: 20%;
	}

	.hero-scroll-hint {
		display: none;
	}

	.kachel-img {
		height: 180px;
	}

	.logo-main {
		height: 48px;
	}

	/* Center all section content */
	.intro-section,
	.features-section,
	.kacheln-section,
	.cta-section {
		text-align: center;
	}

	.feature-item {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	/* Footer mobile */
	.site-footer .wp-block-columns {
		gap: 2.5rem;
	}

	.site-footer .wp-block-column {
		text-align: center;
	}

	.footer-brand {
		display: block;
		text-align: center;
	}

	.footer-logo-img {
		max-width: 200px;
		margin: 0 auto;
	}

	.footer-links {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.footer-heading {
		text-align: center;
	}
}

@media (max-width: 480px) {
	.hero-section {
		min-height: 450px;
	}

	.hero-content {
		padding: 0 1.2rem 25%;
	}

	.hero-badge {
		font-size: 0.65rem;
	}

	.hero-buttons.wp-block-buttons {
		flex-direction: column;
		align-items: center;
	}

	.header-inner {
		padding-left: 1rem !important;
		padding-right: 1rem !important;
	}

	.logo-main {
		height: 40px;
	}

	.kachel-body {
		padding: 1.4rem 1.2rem 1.6rem;
	}
}
