* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* === Local Font Setup === */

/* Poppins (regular + bold) */
@font-face {
	font-family: 'Poppins';
	src: url('assets/fonts/Poppins/Poppins-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: url('assets/fonts/Poppins/Poppins-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Fraunces';
	src: url('assets/fonts/Fraunces/Fraunces-VariableFont_SOFT,WONK,opsz,wght.ttf') format('truetype');
	font-weight: 100 900;   /* full variable range */
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Fraunces';
	src: url('assets/fonts/Fraunces/Fraunces-Italic-VariableFont_SOFT,WONK,opsz,wght.ttf') format('truetype');
	font-weight: 100 900;
	font-style: italic;
	font-display: swap;
}

/* Parisienne (for logo or headings) */
@font-face {
	font-family: 'Parisienne';
	src: url('assets/fonts/Parisienne/Parisienne-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

:root {
	--primary-color: #2C2C2C;       /* Dark color for primary elements */
	--secondary-color: #C9A068;     /* Warm neutral for secondary elements */
	--accent-color: #c92926;        /* Red as accent for CTAs */
	--accent-hover: #e74c3c;        /* Slightly lighter red for hover */
	--accent-light: #f4b48c;        /* Lighter accent for secondary actions */
	--text-dark: #2C2C2C;
	--text-light: #666;
	--bg-light: #F9F6F2;
	--white: #ffffff;
	--cream:#F5EFE7;         /* Section-Hintergrund (passt zum Screenshot) */
	--card:#fff;             /* Kartenfarbe */
	--text:#5E3E2F;          /* warmes Kaffee-Braun für Headlines */
	--muted:#8C7468;         /* Fließtext */
	--accent:#D19C84;        /* Button/Icon-Ton aus Hero */
	--radius-lg:22px;
	--shadow:0 8px 26px rgba(20,12,8,.06);
	--radius-xl:24px;
	--shadow-lg:0 18px 40px rgba(20,12,8,.12);
	--rule: rgba(93, 64, 55, 0.25); /* subtle coffee-brown divider line */
	--latte-600: #c98657;
	--latte-900: #593c24;
	--site-header-h: 48px; /* tweak if your header is taller/shorter */
	--font-heading: 'Fraunces', serif;
	--font-body: 'Poppins', sans-serif;
	--font-accent: 'Parisienne', cursive;
}


body {
	font-family: var(--font-body);
	line-height: 1.6;
	color: var(--text-dark);
	background: var(--white);
	padding-top: 80px; /* Reverted to original desktop value */

	background-color: #faf8f5;
	background-image: url('assets/images/paper.png');
	background-repeat: repeat;
	background-size: 300px 300px;
	opacity: 0.9;
}

body.admin-bar { --site-header-h: 104px; } /* 72 + 32 admin bar */

html { scroll-padding-top: calc(var(--site-header-h) + 12px);
scroll-behavior: smooth;
}


img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}

h1, h2, h3, .section-title, .menu-hero__title {
	font-family: var(--font-heading);
}

.logo, .menu-hero__overline {
	font-family: var(--font-accent);
}


.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(5px);
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.site-logo {
    max-height: 100px;
    overflow: hidden;
}

.site-logo img {
    height: 100%;
    width: auto;
    max-height: 60px;
}



/* Ensure nav aligns correctly and is visible on all viewports */
.main-navigation {
	display: flex;
	align-items: center;
	margin-left: auto;
	background-color: transparent;
	backdrop-filter: none;
}

.main-navigation li {
	list-style: none;
}

/* Fix overlap with WP admin bar when logged in */
.admin-bar .site-header {
	top: 32px;
}

/* Responsive tweaks: keep header tidy on small screens */
@media (max-width: 768px) {
	.header-container {
		flex-wrap: wrap;
		justify-content: center;
		text-align: center;
		gap: 1rem;
		padding: 1rem 0;
	}

	.site-logo {
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.main-navigation {
		width: 100%;
		order: 3;
		justify-content: center;
		margin-top: 0.5rem;
	}

	.main-navigation ul {
		width: 100%;
		flex-direction: column;
		align-items: center;
		gap: 1rem;
		padding: 0.5rem 0 0;
	}

	/* Adjust header height for mobile */
	.site-header {
		padding: 5px 0;
	}

	/* Ensure content below header is visible */
	body {
		padding-top: 250px; /* Keep mobile spacing */
	}

	/* Adjust hero section to account for fixed header */
	.hero-section,
	.menu-hero {
		margin-top: 0;
		padding-top: 160px; /* Adjusted mobile padding */
		margin-bottom: 60px; /* Slightly reduced bottom margin for mobile */
	}

	/* Additional spacing for content sections */
	.container,
	.menu-container,
	.contact-container {
		padding-top: 2.5rem; /* Balanced padding */
	}

	/* Add space above the first content element */
	.content-wrapper > *:first-child {
		margin-top: 1.5rem;
	}

	/* Add slight space for the main content area */
	#main {
		padding-top: 1rem;
	}
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 30px;
}


.hero {
	position: relative;
	min-height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	text-align: center;
	color: #fff;
	font-family: "Inter", sans-serif;
}

/* Hintergrund */
.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Dunkles Overlay für Lesbarkeit */
.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25));
	z-index: 1;
}



/* Weicher Übergang nach unten in den Creme-Hintergrund */
.hero-gradient {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 35%;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #f5efe7 100%);
	z-index: 2;
}

/* Inhalt */
.hero-content {
	position: relative;
	z-index: 3;
	max-width: 700px;
	padding: 1rem;
	opacity: 0;
	transform: translateY(10px);
	animation: fadeInUp 1.4s ease forwards 0.3s;
}
@keyframes fadeInUp {
	to { opacity: 1; transform: translateY(0); }
}

.hero-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
	color: #d19c84;
}

.hero h1 {
	font-family: var(--font-heading);
	font-size: 4rem;
	margin-bottom: 1rem;
	color: #fff;
}

.hero p {
	font-size: 1.25rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2rem;
}

.hero-button {
	display: inline-block;
	background: rgba(209, 156, 132, 0.9);
	color: #fff;
	padding: 0.8rem 2rem;
	border-radius: 30px;
	font-weight: 600;
	backdrop-filter: blur(4px);
	transition: background 0.3s ease;
}

.hero-button:hover {
	background: rgba(209, 156, 132, 1);
}

/* Scroll-Indikator */
.scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	animation: bounce 2s infinite;
}

.mouse {
	width: 24px;
	height: 38px;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-radius: 14px;
	display: flex;
	justify-content: center;
}

.wheel {
	width: 4px;
	height: 8px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 2px;
	margin-top: 6px;
	animation: wheelMove 1.5s infinite;
}

/* Animationen */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bounce {
	0%, 100% {
		transform: translate(-50%, 0);
	}
	50% {
		transform: translate(-50%, -8px);
	}
}

@keyframes wheelMove {
	0% { opacity: 1; transform: translateY(0); }
	100% { opacity: 0; transform: translateY(8px); }
}


/* Base button */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.9rem 1.6rem;
	border-radius: 9999px;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	vertical-align: middle;
	cursor: pointer;
	user-select: none;
	border: 2px solid transparent;
	color: var(--white);
	background-color: var(--accent-color);
	transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .1s ease, box-shadow .2s ease;
	position: relative;
}

.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.12); }
.btn:active { transform: translateY(0); box-shadow: 0 2px 6px rgba(0,0,0,0.1); }
.btn:focus-visible { outline: 3px solid rgba(201,41,38,0.35); outline-offset: 2px; }
.btn:disabled, .btn[disabled] { opacity: .6; cursor: not-allowed; box-shadow: none; }

/* Variants */
.btn-primary, .btn--primary { background-color: var(--accent-color); color: var(--white); border-color: var(--accent-color); }
.btn-primary:hover, .btn--primary:hover { background-color: var(--accent-hover); }

.btn-secondary, .btn--secondary { background-color: var(--primary-color); color: var(--white); border-color: var(--primary-color); }
.btn-secondary:hover, .btn--secondary:hover { background-color: var(--text-dark); border-color: var(--text-dark); }

/* Outline (accent) */
.btn--outline { background: transparent; color: var(--accent-color); border-color: var(--accent-color); }
.btn--outline:hover { background: rgba(201,41,38,0.08); }

/* Light outline for dark/hero backgrounds */
.btn--light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.9); }
.btn--light:hover { background: rgba(255,255,255,0.12); }

/* Ghost (text) button */
.btn-text, .btn--ghost { background: transparent; color: var(--accent-color); padding: 0.5rem 1rem; min-width: auto; border-radius: 8px; border: 0; }
.btn-text:hover, .btn--ghost:hover { background-color: rgba(201,41,38,0.1); color: var(--accent-hover); box-shadow: none; transform: none; }

/* Sizes */
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.9rem; }
.btn-lg { padding: 1.05rem 2.1rem; font-size: 1.1rem; }

/* Full width utility */
.btn--full { width: 100%; }

/* With icon */
.btn-icon, .btn svg { display: inline-block; width: 1.1em; height: 1.1em; }
.btn.btn-with-icon { gap: .6rem; }

/* Button groups */
.btn-group { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
@media (max-width: 480px) { .btn-group.stacked .btn { width: 100%; } }


/* Main Content */
.content-wrapper {
	margin-top: 80px;
	min-height: calc(100vh - 280px);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 4rem 2rem;
}

.intro-section{
	background: var(--cream);
	padding: clamp(3rem, 6vw, 6rem) 0;
}

.intro-section h2{
	font-family: var(--font-heading);
	font-weight:700;
	font-size: clamp(2rem, 3.5vw, 3rem);
	line-height:1.2;
	text-align:center;
	color: var(--text);
	margin: 0 0 1rem 0;
}

.intro-lead{
	text-align:center;
	color: var(--muted);
	font-size: clamp(1rem, 1.3vw, 1.2rem);
	max-width: 900px;
	margin: 0 auto 2.5rem;
}

.feature-grid{
	display:grid;
	grid-template-columns: repeat(3,1fr);
	gap: clamp(1rem, 2vw, 1.5rem);
}

.feature-card{
	background: var(--card);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	padding: clamp(1.25rem, 2.5vw, 2rem);
	text-align:center;
}

.feature-card .icon{
	width:70px; height:70px;
	margin: 0 auto 1rem;
	border-radius:50%;
	background: rgba(209,156,132,.15); /* zartes Accent-Rosa */
	display:grid; place-items:center;
	color: var(--accent);
}

.feature-card .icon svg{
	width:30px; height:30px; display:block;
}

.feature-card h3{
	font-family: var(--font-heading);
	color: var(--text);
	font-size: 1.25rem;
	margin: .25rem 0 .5rem;
}

.feature-card p{
	color: var(--muted);
	font-size: .98rem;
	line-height:1.55;
	margin:0;
}

/* Responsive */
@media (max-width: 960px){
	.feature-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px){
	.feature-grid{ grid-template-columns: 1fr; }
	.intro-lead{ margin-bottom: 2rem; }
}

.page-title {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: var(--primary-color);
	text-align: center;
}

/* About Section */
.about-section {
	background: var(--bg-light);
	padding: 4rem 0;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.about-text h2 {
	font-size: 2rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.about-text p {
	color: var(--text-light);
	margin-bottom: 1rem;
}

/* Menu Page Styles */
.menu-container {
	max-width: 1200px;
	margin: 0 auto;
	margin-top: -100px;
}

.menu-intro {
	text-align: center;
	margin-bottom: 3rem;
}

.menu-intro p {
	color: var(--text-light);
	font-size: 1.1rem;
}

/* Footer layout */
.site-footer {
	padding: 1rem 0 1.25rem;
	background: #2e2a26;
	color: #eee;
}.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

.footer-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.75rem 1.5rem;
	align-items: start;
	margin-bottom: 0.75rem;
}
.footer-col {
	font-size: 0.9rem;
	line-height: 1.35;
}
.footer-col .footer-title {
	font-family: 'Fraunces', serif;
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 0.05em;
	margin-bottom: 0.4rem;
	text-transform: uppercase;
	color: #d5d2cd;
}
.footer-address div,
.footer-line,
.footer-links a {
	margin: 0.15rem 0;
	display: block;
}.footer-list{ list-style:none; margin:0; padding:0; }
.footer-links{ display:flex; gap:.4rem .75rem; flex-direction:column; }
.footer-links--stack a{ line-height:1.4; }
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 0.5rem;
	font-size: 0.8rem;
	opacity: 0.75;
}
@media (max-width: 980px) {
	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.75rem 1rem;
	}
}
@media (max-width: 560px) {
	.footer-grid {
		grid-template-columns: 1fr;
	}
}

/* Contact Page Styles */
.contact-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-info {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-method {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-icon:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.contact-method h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-method p,
.contact-method a {
    color: var(--text-dark);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-container h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-form-container form {
    display: grid;
    gap: 1.2rem;
}

.contact-form-container input,
.contact-form-container textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form-container input:focus,
.contact-form-container textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form-container textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form-container button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form-container button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.map-container {
    margin: 3rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form-container {
        padding: 1.5rem;
    }

    .contact-method {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-icon {
        margin-bottom: 1rem;
    }
}

.section-title {
	color: var(--primary-color);
	font-size: 2rem;
	margin: 3rem 0 1.5rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--secondary-color);
}


@media (max-width: 768px) {
	.hero-content { padding: 1.5rem 16px; }
	.hero-content h1 { font-size: 2.25rem; }
}

.atmo-section{
	background: var(--bg-light);
	padding: clamp(3rem, 6vw, 6rem) 0;
}

.atmo-section .container{
	width:min(1200px, 92vw);
	margin-inline:auto;
}

.atmo-section h2{
	font-family: var(--font-heading);
	color: var(--text);
	text-align:center;
	font-weight:700;
	font-size: clamp(2rem, 3.6vw, 3.1rem);
	line-height:1.2;
	margin:0;
}

.atmo-lead{
	text-align:center;
	color: var(--muted);
	margin: .75rem auto 2.5rem;
	font-size: clamp(1rem, 1.2vw, 1.15rem);
	max-width: 780px;
}

/* Grid mit zwei Bildern */
.atmo-grid{
	display:grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(1rem, 2vw, 1.5rem);
}

.atmo-card{
	margin:0;
	border-radius: var(--radius-xl);
	overflow:hidden;
	box-shadow: var(--shadow-lg);
	background:#fff;            /* sorgt für sauberen Rand um das Bild */
}

.atmo-card img{
	display:block;
	width:100%;
	height: clamp(260px, 35vw, 420px); /* gleiche Höhe für beide */
	object-fit: cover;
	transition: transform .4s ease;
}

/* leichtes Hover-Lift wie im Screenshot-Look */
.atmo-card:hover img{
	transform: scale(1.015);
}

/* Responsive */
@media (max-width: 960px){
	.atmo-grid{ grid-template-columns: 1fr; }
	.atmo-card img{ height: clamp(220px, 55vw, 360px); }
}

/* ==== Coffee palette just for the contact section ==== */
.contact-section{
	--coffee-900:#5a341f;   /* section background */
	--coffee-800:#6b3c24;   /* subtle swirl tone */
	--coffee-700:#744228;   /* cards */
	--coffee-600:#7d472b;   /* card hover */
	--latte-200:#efc0a6;    /* icon badge */
	--latte-100:#f7e4d6;    /* body text */
	--latte-50:#fff8f3;     /* headings */
	--shadow: 0 10px 28px rgba(0,0,0,.25);
}

/* ==== Section background + text ==== */
.contact-section{
	position: relative;
	padding: clamp(3rem, 6vw, 6rem) 0;
	color: var(--latte-100);
	background:
		radial-gradient(1200px 600px at 15% 20%, rgba(0,0,0,.20) 0%, transparent 60%),
		radial-gradient(900px 500px at 85% 30%, rgba(0,0,0,.18) 0%, transparent 60%),
		radial-gradient(800px 400px at 50% 0%, rgba(255,255,255,.04) 0%, transparent 60%),
		linear-gradient(180deg, var(--coffee-900), var(--coffee-900));
}

.contact-container{
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 1rem;
}

/* Headings */
.contact-section h2{
	margin: 0 0 1rem;
	text-align: center;
	color: var(--latte-50);
	font-size: clamp(2.2rem, 3.5vw, 3.5rem);
	line-height: 1.1;
}
.contact-lead{
	margin: 0 auto clamp(2rem, 3vw, 3rem);
	max-width: 65ch;
	text-align: center;
	opacity: .9;
}

/* ==== Grid ==== */
.contact-grid{
	display: grid;
	gap: clamp(1rem, 2vw, 1.5rem);
	grid-template-columns: repeat(4, minmax(0,1fr));
}
@media (max-width:1024px){
	.contact-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width:600px){
	.contact-grid{ grid-template-columns: 1fr; }
}

/* ==== Cards ==== */
.contact-card{
	background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.06)), var(--coffee-700);
	border-radius: 18px;
	border: 1px solid rgba(255,255,255,.06);
	box-shadow: var(--shadow);
	padding: clamp(1.25rem, 2.5vw, 2rem);
	text-align: center;
	transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.contact-card:hover{
	transform: translateY(-2px);
	background-color: var(--coffee-600);
	box-shadow: 0 14px 40px rgba(0,0,0,.28);
}

/* Icon badge */
.contact-icon{
	--size: 88px;
	width: var(--size);
	height: var(--size);
	margin: 0 auto 1rem;
	border-radius: 999px;
	background: var(--latte-200);
	color: var(--coffee-900);              /* drives SVG fill via currentColor */
	display: grid;
	place-items: center;
	box-shadow: inset 0 2px 0 rgba(255,255,255,.25), 0 8px 16px rgba(0,0,0,.25);
}
.contact-icon svg{
	width: 38px;
	height: 38px;
}

/* Titles + text */
.contact-card h3{
	margin: .25rem 0 .5rem;
	font-size: clamp(1.15rem, 1.6vw, 1.35rem);
	color: var(--latte-50);
}
.contact-card p{
	margin: 0;
	font-size: 1.05rem;
	opacity: .95;
}

/* Links (phone, email, maps) */
.contact-card a{
	color: var(--latte-50);
	text-decoration: none;
	border-bottom: 1px dotted rgba(255,255,255,.35);
}
.contact-card a:hover{ border-bottom-color: rgba(255,255,255,.7); }

/* --- Shortcode (daily specials) --- */
.menu-shortcode{ color:var(--coffee-900); }
.menu-shortcode .daily-specials-wrapper > h2{
	margin:0 0 1.25rem; font-weight:700; font-size:clamp(1.8rem,2.6vw,2.4rem); letter-spacing:.02em; color:var(--latte-900);
	display:flex; align-items:center; gap:1.25rem;
}
.menu-shortcode .daily-specials-wrapper > h2::after{
	content:""; flex:1 1 auto; height:1px; background:linear-gradient(to right, transparent 0, var(--rule) 20%, var(--rule) 80%, transparent 100%); opacity:.9;
}
.menu-shortcode .daily-special-item{ padding:1.05rem 0; border-bottom:1px dotted var(--rule); }
.menu-shortcode .daily-special-item>h3{ display:flex; align-items:baseline; justify-content:space-between; gap:.75rem; margin:0; font-weight:700; text-transform:uppercase; letter-spacing:.02em; font-size:clamp(1.05rem,1.1vw,1.125rem); color:var(--coffee-900); }
.menu-shortcode .daily-special-item>h3>.price{ white-space:nowrap; font-weight:700; font-size:1.05rem; color:var(--coffee-900); }
.menu-shortcode .daily-special-item>p{ margin:.35rem 0 0; color:var(--latte-600); line-height:1.5; }

/* --- Static sections (Breakfast/Lunch/Dinner) --- */
.menu-sections{ color:var(--coffee-900); }
.menu-sections .section-title{
	margin:2.25rem 0 1.25rem; font-weight:700; font-size:clamp(1.6rem,2.2vw,2rem); letter-spacing:.02em; color:var(--latte-900);
	display:flex; align-items:center; gap:1.25rem;
}
.menu-sections .section-title::after{ content:""; flex:1 1 auto; height:1px; background:linear-gradient(to right, transparent 0, var(--rule) 20%, var(--rule) 80%, transparent 100%); opacity:.9; }
.menu-sections .menu-items{ display:block; }
.menu-sections .menu-item{ padding:1.05rem 0; border-bottom:1px dotted var(--rule); }
.menu-sections .item-header{ display:flex; align-items:baseline; justify-content:space-between; gap:.75rem; margin:0; }
.menu-sections .item-title{ margin:0; font-weight:700; text-transform:uppercase; letter-spacing:.02em; font-size:clamp(1.05rem,1.1vw,1.125rem); color:var(--coffee-900); }
.menu-sections .item-price{ white-space:nowrap; font-weight:700; font-size:1.05rem; color:var(--coffee-900); }
.menu-sections .item-description{ margin:.35rem 0 0; color:var(--latte-600); line-height:1.5; }

@media (max-width:560px){
	.menu-shortcode .daily-special-item>h3, .menu-sections .item-header{ gap:.5rem; }
}

/* Two-column layout for the “Kleinigkeiten” section */
.menu-sections .menu-two-col{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:2.5rem;
	align-items:start;
}
.menu-sections .menu-col .menu-item:last-child{ border-bottom:none; }

/* Mobile: stack columns */
@media (max-width:900px){
	.menu-sections .menu-two-col{ grid-template-columns:1fr; }
}

.menu-info {
	margin-top: 3rem;
	color: var(--coffee-800);
	font-size: 0.95rem;
	line-height: 1.6;
}
.menu-info em { color: var(--coffee-900); font-style: italic; }
.menu-info .menu-warning {
	margin-top: 1.5rem;
	color: var(--accent);
	font-style: italic;
}

/* --- HERO --- */
.menu-hero{
	position:relative;
	padding:2.5rem 0; /* Reduced top padding from 4.5rem */
	background:
		radial-gradient(1200px 300px at 50% -50%, rgba(201,134,87,.08), transparent 60%),
		radial-gradient(800px 200px at 90% 0%, rgba(93,64,55,.05), transparent 60%),
		var(--bg-light);
	border-bottom:1px solid rgba(93,64,55,.12);
	background-image: url('themes/amidi/assets/images/paper.png');
	background-repeat: repeat;
	background-size: 300px 300px;
	opacity: 0.9;
}
.menu-hero::before{
	/* subtle paper grain using SVG data URI so no external file */
	content:"";
	position:absolute; inset:0;
	background-image: url("./assets/images/amididraussen.jpg");
	opacity: 0.3;
}
.menu-hero__inner{ text-align:center; position:relative; z-index:1; }
.menu-hero__overline{
	margin:0 0 .35rem; letter-spacing:.08em; text-transform:uppercase;
	font-weight:600; font-size:.85rem; color:var(--coffee-700);
}
.menu-hero__title{
	margin:.1rem 0 .35rem;
	font-weight:800;
	letter-spacing:.01em;
	font-size:clamp(2rem, 4vw, 2.75rem);
	color:var(--coffee-900);
}
.menu-hero__subtitle{
	margin:0 auto 1.1rem; max-width:40rem;
	color:var(--latte-900);
	font-size:1rem; line-height:1.6;
}
.menu-hero__meta{
	display:flex; gap:.9rem; justify-content:center; flex-wrap:wrap;
	margin:0 auto 1rem; color:var(--coffee-700); font-size:.95rem;
}
.menu-hero__meta .meta-item{
	display:inline-flex; align-items:center; gap:.4rem; padding:.35rem .6rem;
	background:rgba(93,64,55,.06); border:1px solid rgba(93,64,55,.12);
	border-radius:999px;
}

/* Pills */
.menu-hero__nav{ position:sticky; top:var(--site-header-h); z-index:5; margin-top:.5rem; padding:.5rem 0; backdrop-filter:saturate(140%) blur(6px); }
.menu-hero__nav .pill{
	display:inline-block; margin:.25rem .25rem; padding:.5rem .8rem;
	border-radius:999px; border:1px solid rgba(93,64,55,.18);
	color:var(--coffee-800); text-decoration:none; font-weight:600; font-size:.95rem;
	background:linear-gradient(#fff, rgba(255,255,255,.85));
	transition: transform .12s ease, box-shadow .12s ease;
}
.menu-hero__nav .pill:hover{ transform:translateY(-1px); box-shadow:0 2px 8px rgba(0,0,0,.06); background-color: var(--accent-color);  }

/* Decorative bean divider */
.bean-divider{ display:flex; align-items:center; justify-content:center; gap:.75rem; margin-top:1.25rem; }
.bean-divider span{ flex:1 1 120px; height:1px; background:linear-gradient(to right, transparent, var(--rule), transparent); }
.bean-divider svg{ color:var(--coffee-700); opacity:.9; }

/* Page title inside content (hide original if duplicated) */
.page-title{ display:none; } /* optional: hide the old H1 if it still renders below */
.menu-shortcode,
.menu-section,
.menu-info { scroll-margin-top: calc(var(--site-header-h) + 12px); }

/* Subnote unter Abschnittstiteln */
.menu-section .section-note{
	margin: .25rem 0 .75rem;
	font-size: 0.95rem;
	line-height: 1.5;
	color: var(--latte-600);
	font-style: italic;
}

@media (max-width: 560px){
	.menu-section .section-note{ font-size: 0.93rem; }
}

/* === Typography bindings for Landing Page === */
.landing-page{ font-family: var(--font-body); }
.landing-page h1,
.landing-page h2,
.landing-page h3{ font-family: var(--font-heading); font-weight: 700; letter-spacing: .01em; }
.landing-page p,
.landing-page li,
.landing-page a,
.landing-page .hero-button{ font-family: var(--font-body); }
/* Optional: make hero title weightier for the big display */
.landing-page .hero h1{ font-weight: 800; }
/* Cards/section headings */
.landing-page .feature-card h3,
.landing-page .contact-card h3{ font-weight: 700; }
