/* =========================================================
   Restaurant Römerhalle — Frontend-Stylesheet
   Farben unverändert zur bisherigen Seite, Umsetzung neu:
   lebendiger durch Scroll-Reveal, Hover-/Fokus-Mikrointeraktionen,
   weiche Übergänge, dynamische Header-Leiste.
   ========================================================= */

@font-face {
	font-family: 'Playfair Display';
	font-style: italic;
	font-weight: 400;
	src: url('/fonts/playfair-display-v15-latin-italic.woff2') format('woff2'),
		 url('/fonts/playfair-display-v15-latin-italic.woff') format('woff');
	font-display: swap;
}
@font-face {
	font-family: 'Playfair Display';
	font-style: normal;
	font-weight: 700;
	src: url('/fonts/playfair-display-v15-latin-700.woff2') format('woff2'),
		 url('/fonts/playfair-display-v15-latin-700.woff') format('woff');
	font-display: swap;
}
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 400;
	src: url('/fonts/montserrat-v14-latin-regular.woff2') format('woff2'),
		 url('/fonts/montserrat-v14-latin-regular.woff') format('woff');
	font-display: swap;
}
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 500;
	src: url('/fonts/montserrat-v14-latin-500.woff2') format('woff2'),
		 url('/fonts/montserrat-v14-latin-500.woff') format('woff');
	font-display: swap;
}
@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 700;
	src: url('/fonts/montserrat-v14-latin-700.woff2') format('woff2'),
		 url('/fonts/montserrat-v14-latin-700.woff') format('woff');
	font-display: swap;
}

:root {
	--c-black: #000000;
	--c-white: #ffffff;
	--c-font: #ffffff;
	--c-primary: #ED7000;
	--c-primary-light: #FF8C2E;
	--c-secondary: #101820;
	--c-secondary-2: #161f28;
	--c-line: #232A31;
	--c-lightbg: #F4F4F4;
	--c-darktext: #1b1b1b;
	--c-success: #A9E66B;
	--c-info: #FFDF52;
	--c-error: #e03247;
	--gutter: 20px;
	--ease: cubic-bezier(.22, 1, .36, 1);
	--radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--c-secondary);
	color: var(--c-font);
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
	font-family: 'Playfair Display', Georgia, serif;
	margin: 0 0 20px;
	line-height: 1.25;
}
h1 { font-size: 46px; font-weight: 700; }
h2 { font-size: 40px; font-style: italic; font-weight: 400; color: var(--c-primary); }
h3 { font-size: 40px; font-weight: 400; }
h4 {
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 18px;
	line-height: 1.5;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .02em;
	color: var(--c-primary);
	margin: 0 0 10px;
}
@media (max-width: 992px) {
	h2, h3 { font-size: 32px; }
}
@media (max-width: 767px) {
	h2, h3 { font-size: 26px; }
	h4 { font-size: 15px; }
}
p { margin: 0 0 20px; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
.inner { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.hide-mobile { display: block; }
.hide-small { display: inline; }
.clear { clear: both; }
@media (max-width: 992px) { .inner { padding: 0 30px; } }
@media (max-width: 767px) { .inner { padding: 0 20px; } .hide-mobile { display: none; } }

/* Fade-in on load, honoring reduced motion */
body.fade-in { opacity: 0; }
body { transition: opacity .5s ease; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- Scroll reveal ---------- */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > * { transition-delay: calc(var(--stagger-i, 0) * 80ms); }

/* ---------- Buttons ---------- */
.button, .button-ghost, .highlighted, input[type="submit"] {
	position: relative;
	display: inline-block;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: .03em;
	padding: 14px 34px;
	border: 2px solid var(--c-primary);
	background: var(--c-primary);
	color: var(--c-white);
	border-radius: var(--radius);
	cursor: pointer;
	overflow: hidden;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.button:hover, input[type="submit"]:hover {
	background: var(--c-primary-light);
	border-color: var(--c-primary-light);
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(237, 112, 0, .35);
}
.button:active, input[type="submit"]:active { transform: translateY(0); }
.button-ghost {
	background: transparent;
	color: var(--c-white);
}
.button-ghost.active, .button-ghost:hover {
	background: var(--c-primary);
	color: var(--c-white);
	transform: translateY(-3px);
}
.highlighted {
	background: transparent;
	border: none;
	padding: 0;
	color: var(--c-primary);
	font-weight: 700;
}
.highlighted::after {
	content: '→';
	display: inline-block;
	margin-left: 8px;
	transition: transform .25s var(--ease);
}
.highlighted:hover::after { transform: translateX(6px); }
input[type="submit"] { font-family: inherit; }
input[type="submit"]:disabled { background: var(--c-lightbg); border-color: var(--c-lightbg); color: #999; cursor: not-allowed; transform: none; box-shadow: none; }

/* ---------- Kopf-Banner (im Admin-Bereich an-/abschaltbar) ---------- */
.site-banner {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 110;
	background: var(--c-primary);
	color: var(--c-secondary);
	text-align: center;
	padding: 10px 20px;
}
.site-banner .inner { max-width: 960px; margin: 0 auto; }
.site-banner p {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
}
.site-banner p + p { margin-top: 3px; }
@media (max-width: 600px) {
	.site-banner { padding: 8px 16px; }
	.site-banner p { font-size: 12.5px; }
}

/* ---------- Header ---------- */
.site-header {
	position: fixed;
	top: var(--banner-h, 0px); left: 0; right: 0;
	z-index: 100;
	padding: 34px 0;
	background: linear-gradient(to bottom, rgba(16,24,32,.75), transparent);
	transition: top .3s var(--ease), padding .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header .inner { display: flex; align-items: center; justify-content: space-between; }
.site-header .logo img { height: 46px; width: auto; transition: height .3s var(--ease); }
.site-header.is-scrolled {
	padding: 14px 0;
	background: rgba(16, 24, 32, .96);
	box-shadow: 0 6px 24px rgba(0,0,0,.3);
	backdrop-filter: blur(6px);
}
.site-header.is-scrolled .logo img { height: 36px; }
.nav ul { display: flex; gap: 28px; }
.nav a {
	position: relative;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .02em;
	padding: 6px 0;
}
.nav a::after {
	content: '';
	position: absolute; left: 0; bottom: -2px;
	height: 2px; width: 0;
	background: var(--c-primary);
	transition: width .25s var(--ease);
}
.nav a:hover::after, .nav a.current::after { width: 100%; }
.nav a:hover { color: var(--c-primary); }
.nav a.highlight-link { color: var(--c-primary); }
@media (max-width: 992px) { .nav { display: none; } }

.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px; height: 22px;
	background: none; border: none; padding: 0; cursor: pointer;
}
.menu-toggle span {
	display: block; height: 2px; width: 100%;
	background: var(--c-white);
	transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }
@media (max-width: 992px) { .menu-toggle { display: flex; } }

.mobile-nav {
	position: fixed; inset: 0;
	background: var(--c-secondary);
	z-index: 99;
	display: flex; align-items: center; justify-content: center;
	transform: translateY(-100%);
	opacity: 0;
	transition: transform .4s var(--ease), opacity .4s var(--ease);
	pointer-events: none;
}
.mobile-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-nav ul { text-align: center; }
.mobile-nav li {
	margin: 18px 0;
	opacity: 0;
	transform: translateY(16px);
	transition: opacity .35s var(--ease), transform .35s var(--ease);
	transition-delay: calc(var(--i, 0) * 60ms);
}
.mobile-nav.is-open li { opacity: 1; transform: translateY(0); }
.mobile-nav a { font-family: 'Playfair Display', serif; font-size: 30px; }
.mobile-nav a:hover, .mobile-nav a.current { color: var(--c-primary); }

/* ---------- Hero / Intro ---------- */
section.intro {
	position: relative;
	padding: 260px 0 120px;
	background: var(--c-secondary);
	overflow: hidden;
}
section.intro::after {
	content: '';
	position: absolute; top: 0; right: 0; height: 100%; width: 65%;
	background-image: var(--hero-image, url('/img/intro.jpg'));
	background-size: cover; background-position: center;
	opacity: .28;
	transform: scale(1.08);
	animation: heroZoom 16s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1.18); } }
section.intro .inner { position: relative; z-index: 1; }
section.intro h1 {
	max-width: 640px;
	opacity: 0;
	animation: heroIn 1s var(--ease) .2s forwards;
}
@keyframes heroIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 992px) { section.intro { padding: 200px 0 70px; } }
@media (max-width: 767px) { section.intro { padding: 140px 0 50px; } section.intro h1 { font-size: 34px; } }

.page-head { padding-top: 200px !important; }
@media (max-width: 767px) { .page-head { padding-top: 140px !important; } }

/* ---------- Text sections ---------- */
section.center-text, section.left-text, section.right-text {
	padding: 90px 0;
}
section.center-text .inner { max-width: 760px; text-align: center; margin: 0 auto; }
section.left-text .inner { max-width: 640px; }
section.right-text .inner { max-width: 640px; margin-left: auto; text-align: right; }
@media (max-width: 767px) {
	section.center-text, section.left-text, section.right-text { padding: 50px 0; }
	section.right-text .inner { text-align: left; margin-left: 0; }
}

section.image-full .inner img,
section.image-small-left .inner img,
section.image-small-right .inner img {
	border-radius: var(--radius);
	transition: transform .6s var(--ease);
}
section.image-full { padding: 20px 0; }
section.image-full .inner img:hover { transform: scale(1.015); }
section.image-small-left .wrap, section.image-small-right .wrap { padding: 10px 0; }
section.image-small-left .inner, section.image-small-right .inner { max-width: 620px; margin-left: auto; margin-right: auto; }
@media (max-width: 992px) {
	section.image-small-left .inner, section.image-small-right .inner { max-width: none; padding: 0 30px; }
}

/* ---------- Discover / posts ---------- */
section.discover { padding: 130px 0; background: var(--c-secondary-2); }
section.discover .title { text-align: center; margin-bottom: 60px; }

/* Kacheln groß, weiße Box je Beitrag, Bild "schwebt" davor, Reihe für Reihe
   versetzt/im Zickzack — angelehnt an das Original-Layout. */
.posts-wrapper { display: flex; flex-direction: column; gap: 100px; }
.post { width: 92%; }
.post:nth-child(odd) { margin-left: 0; margin-right: auto; }
.post:nth-child(even) { margin-left: auto; margin-right: 0; }

.post-inner {
	display: flex; align-items: center;
	background: var(--c-white); color: var(--c-darktext);
	border-radius: var(--radius);
	box-shadow: 0 25px 60px rgba(0,0,0,.35);
	transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.post:nth-child(odd) .post-inner { flex-direction: row-reverse; }
.post-inner:hover { transform: translateY(-8px); box-shadow: 0 30px 70px rgba(0,0,0,.45); }

.post-inner .image {
	flex: 0 0 50%; aspect-ratio: 4/3; margin: -85px 0; position: relative; z-index: 2;
	border-radius: var(--radius); overflow: hidden;
	box-shadow: 0 25px 50px rgba(0,0,0,.45);
	transition: transform .5s var(--ease);
}
.post-inner .image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.post-inner:hover .image { transform: translateY(-12px); }
.post-inner:hover .image img { transform: scale(1.06); }

.post-inner .text { flex: 1 1 50%; padding: 75px 90px; }
.post-inner .text h3 { font-size: 42px; margin-bottom: 21px; color: var(--c-darktext); }
.post-inner .highlight { border-left: 3px solid var(--c-primary); padding-left: 27px; }
.post-inner .highlight p { color: var(--c-primary); margin: 0; font-weight: 600; font-size: 18px; }
.post-inner .post-content { color: #4a4f56; font-size: 19px; line-height: 1.7; margin-top: 20px; }
.post-inner .post-content p { margin: 0 0 14px; }

@media (max-width: 900px) {
	.posts-wrapper { gap: 60px; }
	.post, .post:nth-child(odd), .post:nth-child(even) { width: 100%; margin-left: 0; margin-right: 0; }
	.post-inner, .post:nth-child(odd) .post-inner { flex-direction: column; align-items: stretch; }
	.post-inner .image { flex-basis: auto; width: calc(100% - 40px); aspect-ratio: 16/10; margin: -36px auto 0; }
	.post-inner .text { padding: 40px 34px; }
	.post-inner .text h3 { font-size: 32px; }
}

/* ---------- CTA box (Öffnungszeiten etc.) — weiße Box mit schwebendem Bild,
   im selben Look wie die Aktuelles-/Entdecken-Kacheln ---------- */
.cta-box { padding: 60px 0; }
.cta-box .inner {
	display: flex; align-items: center;
	background: var(--c-white); color: var(--c-darktext);
	border-radius: var(--radius);
	box-shadow: 0 25px 60px rgba(0,0,0,.35);
}
.cta-box .image-wrap {
	flex: 0 0 46%; aspect-ratio: 4/3; margin: -75px 0; position: relative; z-index: 2;
	border-radius: var(--radius); overflow: hidden;
	box-shadow: 0 25px 50px rgba(0,0,0,.45);
	transition: transform .5s var(--ease);
}
.cta-box .image { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .7s var(--ease); }
.cta-box:hover .image-wrap { transform: translateY(-10px); }
.cta-box:hover .image { transform: scale(1.06); }
.cta-box .content { flex: 1 1 54%; display: flex; align-items: center; padding: 75px 90px; }
.cta-box h3 { margin-bottom: 6px; color: var(--c-darktext); }
.cta-box h4 { margin-bottom: 9px; font-size: 19px; }
.cta-box .highlight { margin: 24px 0; padding: 20px 26px; background: rgba(237,112,0,.08); border-left: 3px solid var(--c-primary); border-radius: 0 var(--radius) var(--radius) 0; }
.cta-box .highlight p { margin: 0 0 8px; color: var(--c-darktext); font-size: 17px; }
.cta-box .highlight p:last-child { margin-bottom: 0; }
.cta-box .info { margin-top: 20px; font-size: 15px; color: #5a5f66; }
.cta-box .info p { margin: 0; }
.cta-box .holidays-list { margin-top: 20px; }
.cta-box .holidays-list .info { margin-top: 13px; padding-top: 13px; border-top: 1px dashed rgba(0,0,0,.08); }
.cta-box .holidays-list .info:first-child { margin-top: 0; padding-top: 0; border-top: none; }
@media (max-width: 900px) {
	.cta-box .inner { flex-direction: column; align-items: stretch; }
	.cta-box .image-wrap { flex-basis: auto; width: calc(100% - 40px); aspect-ratio: 16/10; margin: -36px auto 0; }
	.cta-box .content { padding: 42px 34px; }
}

/* ---------- Info box (reservieren) ---------- */
.info-box { padding: 40px 0 100px; }
.info-box .inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; border-radius: 6px; overflow: hidden; background: var(--c-secondary-2); }
.info-box .image-wrap { min-height: 320px; }
.info-box .image { width: 100%; height: 100%; min-height: 320px; background-size: cover; background-position: center; }
.info-box .content { padding: 50px; text-align: center; }
@media (max-width: 900px) { .info-box .inner { grid-template-columns: 1fr; } }

/* ---------- Menu teaser slider (home) ---------- */
section.menu { padding: 100px 0; background: var(--c-secondary); }
.menu-intro { text-align: center; max-width: 720px; margin: 0 auto 50px; }
/* Karussell: zeigt max. 3 Bilder komplett, links/rechts leicht angeschnitten,
   mit spürbarem Abstand zwischen den Bildern. Endlos-Loop (Bilder werden in
   main.js dreifach geklont) — kein Anfang/Ende, Pfeile immer aktiv. */
.menu-slider-wrap { position: relative; }
.menu-slider {
	display: flex; gap: 28px; width: 100%;
	overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none;
}
.menu-slider::-webkit-scrollbar { display: none; height: 0; }
.menu-slider .slide {
	flex: 0 0 24%; min-width: 0; height: 380px; scroll-snap-align: start;
	background-size: cover; background-position: center;
	transition: filter .4s var(--ease); position: relative; overflow: hidden;
}
.menu-slider .slide:hover { filter: brightness(1.06); }

.menu-slider-arrow {
	position: absolute; top: 50%; transform: translateY(-50%);
	width: 52px; height: 52px; border-radius: 50%; border: none; padding: 0;
	background: var(--c-white); color: var(--c-darktext);
	display: flex; align-items: center; justify-content: center; cursor: pointer;
	box-shadow: 0 10px 30px rgba(0,0,0,.35); z-index: 3;
	transition: transform .3s var(--ease);
}
.menu-slider-arrow:hover { transform: translateY(-50%) scale(1.08); }
.menu-slider-arrow svg { width: 22px; height: 22px; }
.menu-slider-arrow--prev { left: 18px; }
.menu-slider-arrow--next { right: 18px; }

@media (max-width: 900px) {
	.menu-slider { gap: 16px; }
	.menu-slider .slide { flex-basis: 68%; height: 220px; }
	.menu-slider-arrow { width: 42px; height: 42px; }
	.menu-slider-arrow svg { width: 18px; height: 18px; }
	.menu-slider-arrow--prev { left: 8px; }
	.menu-slider-arrow--next { right: 8px; }
}

/* ---------- Menu card sections (Speisekarte) ---------- */
section.menu-card { padding: 70px 0; }
section.menu-card .title { max-width: 640px; margin: 0 auto 40px; text-align: center; }
section.menu-card .title h3 { color: var(--c-primary); }
section.menu-card .title .highlight p { color: #c9ccd0; }
.wrap-dish {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 22px;
	align-items: stretch;
}
.dish {
	position: relative;
	background: var(--c-secondary-2);
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	height: 100%;
}
.dish-inner {
	display: flex; flex-direction: column; height: 100%; min-height: 190px;
	padding: 26px 24px;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
	border-radius: var(--radius);
}
.dish:hover .dish-inner, .dish:focus-within .dish-inner {
	transform: translateY(-6px);
	box-shadow: 0 16px 32px rgba(0,0,0,.35);
}
.dish:hover, .dish:focus-within { border-color: var(--c-primary); }
.dish-title { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.dish-subtitle {
	color: #c9ccd0; font-size: 14px; line-height: 1.6; flex-grow: 1;
	display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.dish-price {
	margin-top: 16px; align-self: flex-start;
	font-weight: 700; color: var(--c-primary);
	padding: 6px 14px; border: 1px solid var(--c-primary); border-radius: 999px; font-size: 14px;
	transition: background .3s var(--ease), color .3s var(--ease);
}
.dish:hover .dish-price { background: var(--c-primary); color: var(--c-white); }
.dish-price::after { content: ' €'; }

section.menu-card .info { max-width: 640px; margin: 40px auto 0; text-align: center; color: #c9ccd0; }

/* ---------- Mittagstisch ---------- */
/* Die hervorgehobene "Heute"-Karte nutzt dieselben Container-Klassen wie
   die Wochenkacheln weiter unten (.lunch-day-inner/.lunch-day-image, siehe
   mittagskarte.php), die Seiten sind aber fest verteilt: links (dunkle,
   schwebende Fläche) immer Zeile 1, rechts (helle Fläche) immer Zeile 2.
   Ist eine der beiden Zeilen leer (oder liegt gar kein Eintrag vor),
   "schwebt"/erscheint an genau dieser Stelle stattdessen der
   Wochentagsname, statt leer zu bleiben. */
.lunch-today { max-width: 820px; margin: 0 auto 40px; text-align: center; }
.lunch-today .lunch-today-badge {
	display: inline-block;
	background: var(--c-primary);
	color: var(--c-white);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 999px;
	margin-bottom: 16px;
}
.lunch-today h3 { margin-bottom: 28px; }
.lunch-today-card { text-align: left; }
.lunch-today-message { margin: 0; color: var(--c-primary); font-weight: 700; font-size: 21px; }
/* Zeile 1 auf der dunklen, schwebenden Fläche links (statt des
   Wochentagsnamens, wenn Zeile 1 befüllt ist). */
.lunch-day-image .lunch-day-text { padding: 0 28px; text-align: center; }
.lunch-day-image .lunch-day-text p { margin: 0; color: var(--c-white); font-size: 21px; line-height: 1.6; }
/* Wochentagsname als Fallback auf der hellen Seite rechts (wenn Zeile 2
   leer ist). */
.lunch-day-name-light { margin: 0; font-family: 'Playfair Display', serif; font-size: 28px; color: var(--c-secondary); }

/* Preis-Hinweis + frei editierbarer Zusatztext zwischen der "Heute"-Karte
   und der Wochenübersicht (beides im Admin-Bereich unter Speisekarte ->
   Mittagstisch pflegbar; beide Felder sind optional und erscheinen nur,
   wenn befüllt). */
.lunch-price-note { max-width: 680px; margin: 0 auto 70px; text-align: center; }
.lunch-price-note .lunch-price { margin: 0 0 16px; color: var(--c-primary); font-weight: 700; font-size: 22px; }
.lunch-price-note .lunch-note-text { color: #c9ccd0; font-size: 16px; line-height: 1.7; }
.lunch-price-note .lunch-note-text p { margin: 0 0 10px; }
.lunch-price-note .lunch-note-text p:last-child { margin-bottom: 0; }
.lunch-price-note .lunch-note-text a { color: var(--c-primary); text-decoration: underline; }

/* Wochentage-Kacheln im selben Aufbau wie "Aktuelles" auf der Startseite
   (großes, weißes Kachel-Set im Zickzack, siehe .posts-wrapper/.post weiter
   oben) — statt eines Fotos "schwebt" hier der Wochentagsname als eigene
   Fläche vor der Karte. Alle 7 Kacheln sind gleich groß (orientiert an der
   größten/textreichsten Kachel) — die tatsächliche Höhe misst
   initLunchDayCards() in js/main.js und überträgt sie als Mindesthöhe auf
   alle Kacheln; min-height hier ist nur der Fallback ohne JavaScript.
   Damit die schwebende Fläche dabei nie in die Nachbarzeile bzw. in die
   Überschrift darüber hineinragt, ist der "Schwebe"-Versatz bewusst
   moderat (-24px statt der -85px bei den Aktuelles-Fotos) und der Abstand
   zwischen den Zeilen bzw. zur Überschrift entsprechend großzügig. */
.lunch-days-wrapper { display: flex; flex-direction: column; gap: 60px; margin-top: 40px; }
.lunch-day { width: 92%; }
.lunch-day:nth-child(odd) { margin-left: 0; margin-right: auto; }
.lunch-day:nth-child(even) { margin-left: auto; margin-right: 0; }

.lunch-day-inner {
	display: flex; align-items: stretch;
	min-height: 230px;
	background: var(--c-white); color: var(--c-darktext);
	border-radius: var(--radius);
	box-shadow: 0 25px 60px rgba(0,0,0,.35);
	transition: transform .4s var(--ease), box-shadow .4s var(--ease), min-height .2s var(--ease);
}
.lunch-day:nth-child(odd) .lunch-day-inner { flex-direction: row-reverse; }
.lunch-day-inner:hover { transform: translateY(-8px); box-shadow: 0 30px 70px rgba(0,0,0,.45); }

.lunch-day-image {
	flex: 0 0 50%; margin: -24px 0; position: relative; z-index: 2;
	display: flex; align-items: center; justify-content: center;
	border-radius: var(--radius); overflow: hidden;
	background: var(--c-secondary);
	box-shadow: 0 25px 50px rgba(0,0,0,.45);
	transition: transform .5s var(--ease), background .3s var(--ease);
}
.lunch-day-inner:hover .lunch-day-image { transform: translateY(-10px); }
.lunch-day-image .lunch-day-name {
	font-family: 'Playfair Display', serif;
	font-size: 34px;
	color: var(--c-white);
	text-align: center;
	letter-spacing: .02em;
}
.lunch-day-inner.is-today .lunch-day-image { background: var(--c-primary); }
.lunch-day-inner.is-today .lunch-day-image .lunch-day-name { color: var(--c-secondary); }
.lunch-day-image .lunch-day-badge {
	position: absolute; top: 22px; right: 22px;
	background: var(--c-white); color: var(--c-primary);
	font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
	padding: 5px 13px; border-radius: 999px;
}

.lunch-day-inner .text { flex: 1 1 50%; padding: 56px 90px; display: flex; flex-direction: column; justify-content: center; }
.lunch-day-content p { color: #4a4f56; font-size: 19px; line-height: 1.7; margin: 0 0 10px; }
.lunch-day-content p:last-child { margin-bottom: 0; }
.lunch-day-empty { margin: 0; color: #8b8f94; font-size: 19px; font-style: italic; }

@media (max-width: 900px) {
	.lunch-days-wrapper { gap: 48px; margin-top: 30px; }
	.lunch-day, .lunch-day:nth-child(odd), .lunch-day:nth-child(even) { width: 100%; margin-left: 0; margin-right: 0; }
	.lunch-day-inner, .lunch-day:nth-child(odd) .lunch-day-inner { flex-direction: column; align-items: stretch; min-height: 0 !important; }
	.lunch-day-image { flex-basis: auto; width: calc(100% - 40px); aspect-ratio: 16/10; margin: -28px auto 0; }
	.lunch-day-image .lunch-day-name { font-size: 28px; }
	.lunch-day-inner .text { padding: 34px; }
}

.menu-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 0 0 60px; }
.menu-tabs a {
	padding: 10px 20px; border: 1px solid var(--c-line); border-radius: 999px;
	font-size: 13px; font-weight: 700; letter-spacing: .03em;
	transition: all .25s var(--ease);
}
.menu-tabs a:hover, .menu-tabs a.active { background: var(--c-primary); border-color: var(--c-primary); }

/* ---------- Setup examples (events) ---------- */
.setup-example-one .col-wrap, .setup-example-two .col-wrap {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; text-align: center; padding: 40px 0;
}
.setup-example-one img, .setup-example-two img { margin: 0 auto 16px; transition: transform .4s var(--ease); border-radius: var(--radius); }
.setup-example-one .col:hover img, .setup-example-two .col:hover img { transform: scale(1.05); }
.setup-example-two .col-wrap { align-items: center; text-align: left; }

/* ---------- Fullscreen CTA ---------- */
.cta-fullscreen {
	padding: 130px 0; text-align: center;
	background: radial-gradient(circle at 50% 0%, rgba(237,112,0,.15), transparent 60%), var(--c-secondary);
}
.cta-fullscreen h1 { margin-bottom: 40px; }
.cta-fullscreen .button-ghost { margin: 0 10px 10px; border: 2px solid var(--c-white); }
.cta-fullscreen .button-ghost:hover { border-color: var(--c-primary); }

/* ---------- Forms ---------- */
section.form { padding: 40px 0 100px; }
section.form .inner { max-width: 900px; margin: 0 auto; background: var(--c-secondary-2); padding: 50px; border-radius: 6px; }
.col-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
.col-wrap .col-two, .col-wrap .col-one.full { grid-column: 1 / -1; }
label { display: block; margin-bottom: 20px; font-size: 13px; font-weight: 700; letter-spacing: .02em; color: #c9ccd0; }
label span { color: var(--c-primary); }
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], input[type="time"], input[type="number"], select, textarea {
	display: block; width: 100%; margin-top: 8px;
	background: var(--c-secondary); border: 1px solid var(--c-line); border-radius: var(--radius);
	color: var(--c-white); padding: 13px 14px; font-family: inherit; font-size: 15px;
	transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--c-primary) 50%), linear-gradient(135deg, var(--c-primary) 50%, transparent 50%); background-position: calc(100% - 20px) center, calc(100% - 15px) center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(237,112,0,.2); }
textarea { resize: vertical; }
.required-info { font-size: 12px; color: #8a8f94; margin-bottom: 16px; }
label.datenschutz { display: flex; align-items: flex-start; gap: 10px; font-weight: 400; }
label.datenschutz input { width: auto; margin: 3px 0 0; }
label.datenschutz a { color: var(--c-primary); text-decoration: underline; }
.contactform-message { padding: 16px 20px; border-radius: var(--radius); margin-bottom: 20px; font-size: 14px; }
.contactform-message.error { background: rgba(224,50,71,.12); border: 1px solid var(--c-error); color: #ffb3bd; }
.contactform-message.success { background: rgba(169,230,107,.12); border: 1px solid var(--c-success); color: var(--c-success); }
.honeypot-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
@media (max-width: 767px) {
	section.form .inner { padding: 30px 22px; }
	.col-wrap { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
section.footer { padding: 90px 0 40px; background: var(--c-secondary-2); border-top: 1px solid var(--c-line); }
.wrap-col { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-bottom: 40px; }
.wrap-col-col { display: flex; flex-wrap: wrap; gap: 24px; }
section.footer a:hover { color: var(--c-primary); }
.imprint { padding-top: 24px; border-top: 1px solid var(--c-line); display: flex; gap: 24px; font-size: 13px; color: #8a8f94; }
.imprint a:hover { color: var(--c-primary); }

/* ---------- Störer / banner ---------- */
.stoerer { background: var(--c-primary); }
.stoerer .inner { padding: 14px 0; text-align: center; font-weight: 700; }
.stoerer a.btn { display: inline-block; margin-left: 14px; background: var(--c-black); padding: 6px 14px; border-radius: 999px; font-size: 12px; }

/* ---------- Utility ---------- */
.center-small { max-width: 800px; margin: 0 auto; }
@media (min-width: 768px) { .hide-small { display: none; } }
