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

:root {
  --green-dark: #102713;
  --green: #2f5f31;
  --green-mid: #244d2b;
  --green-soft: #a6ca70;
  --cream: #efe3cd;
  --paper: #fff6e7;
  --paper-light: #fffaf0;
  --gold-line: #d2bd96;
  --text: #1e251d;
  --muted: #4d5447;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 5vw;
  background: linear-gradient(180deg, #fff8ea, #f1e2c7);
  border-bottom: 1px solid rgba(30, 50, 30, 0.16);
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.brand {
  min-width: 315px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--green);
}

.brand-seal {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 4px solid var(--green);
  border-radius: 50%;
  background: #fbf4e6;
  box-shadow: inset 0 0 0 8px #f3e8d2;
  font-size: 34px;
}

.brand strong {
  display: block;
  font-size: 34px;
  line-height: 0.92;
  letter-spacing: .2px;
}

.brand small {
  display: block;
  margin-top: 9px;
  color: #1c2d1c;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-size: 13px;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 34px;
}

.main-nav a {
  text-decoration: none;
  color: #141914;
  font-size: 18px;
  padding: 12px 0;
  border-bottom: 3px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--green);
  border-bottom-color: var(--green);
}

.whatsapp-top {
  text-decoration: none;
  color: white;
  background: linear-gradient(180deg, #3d743b, #2d5f2f);
  padding: 17px 27px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 5px 12px rgba(25,55,25,.2);
}

.hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10,18,9,.94) 0%, rgba(10,18,9,.74) 38%, rgba(10,18,9,.20) 72%, rgba(10,18,9,.04) 100%),
    linear-gradient(0deg, rgba(150,100,38,.32), rgba(150,100,38,.32)),
    url("assets/gasthaus-historisch.jpg") center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 28%, rgba(255,235,190,.24), transparent 35%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(720px, 92vw);
  margin-left: 5vw;
  color: white;
  padding: 76px 0;
}

.eyebrow {
  font-size: 24px;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: bold;
}

.hero h1 {
  font-size: clamp(68px, 8.5vw, 116px);
  line-height: .92;
  letter-spacing: -1px;
  margin-bottom: 4px;
  text-shadow: 0 5px 22px rgba(0,0,0,.36);
}

.script {
  color: #9bc66e;
  font-size: clamp(58px, 5.6vw, 90px);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-style: italic;
  line-height: 1;
  margin-bottom: 30px;
  text-shadow: 0 3px 12px rgba(0,0,0,.26);
}

.hero-text {
  max-width: 610px;
  font-size: 25px;
  line-height: 1.45;
  color: #fff6e8;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-height: 54px;
  border-radius: 8px;
  padding: 0 30px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
}

.button.primary {
  color: white;
  background: linear-gradient(180deg, #4a8544, #2f6d35);
  border: 1px solid rgba(255,255,255,.2);
}

.button.secondary {
  color: white;
  background: rgba(0,0,0,.18);
  border: 2px solid rgba(255,255,255,.75);
}



.feature-panel {
  position: relative;
  z-index: 5;
  margin: -42px auto 0;
  width: min(92vw, 1460px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--paper);
  border: 1px solid var(--gold-line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0,0,0,.20);
}

.feature-panel article {
  min-height: 198px;
  padding: 34px 24px;
  text-align: center;
  border-right: 1px solid #decfb3;
}

.feature-panel article:last-child {
  border-right: 0;
}

.feature-icon {
  display: block;
  font-size: 41px;
  margin-bottom: 13px;
}

.feature-panel h2 {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 17px;
  margin-bottom: 12px;
}

.feature-panel p {
  line-height: 1.55;
  font-size: 16px;
  color: #2d3029;
}

.visit-card {
  background: linear-gradient(180deg, #2d6630, #1f4d25);
  color: #fff6e7;
}

.visit-card h2,
.visit-card p {
  color: #fff6e7;
}

.welcome-block {
  text-align: center;
  padding: 72px 30px;
  background: #f7f0df;
}

.welcome-block h2 {
  color: var(--green);
  font-size: 40px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.welcome-block p {
  font-size: 20px;
  color: var(--muted);
}

.contact-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1.7fr 1fr 1fr;
  background: linear-gradient(180deg,#1e421f,#123116);
  color: #f8efd9;
}

.contact-item {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 14px;
  border-right: 1px solid rgba(255,255,255,.16);
  text-align: left;
}

.contact-item:last-child {
  border-right: none;
}

.contact-item span {
  font-size: 24px;
  color: #a6ca70;
  flex: 0 0 auto;
}

.contact-item p {
  font-size: 13px;
  line-height: 1.35;
  margin: 0;
}

.contact-item.legal strong {
  color: #b7d486;
}

.page-footer {
  background: #0d2511;
  color: #f8efd9;
  text-align: center;
  padding: 22px;
  font-size: 14px;
}

/* Speisekarte */
.menu-page {
  background: var(--cream);
}

.menu-hero {
  text-align: center;
  color: white;
  padding: 78px 30px;
  background:
    linear-gradient(rgba(20,42,20,.88), rgba(20,42,20,.88)),
    url("assets/gasthaus-historisch.jpg") center/cover no-repeat;
}

.menu-hero p {
  color: #b8cf86;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: bold;
  margin-bottom: 12px;
}

.menu-hero h1 {
  font-size: clamp(44px, 6vw, 76px);
  margin-bottom: 22px;
}

.menu-hero a {
  color: #f8efd9;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 10px;
  padding: 12px 20px;
  display: inline-block;
  text-decoration: none;
}

.menu-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 28px;
  align-items: start;
}

.menu-card {
  background: var(--paper-light);
  border: 1px solid rgba(47,95,49,.22);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  overflow: hidden;
}

.menu-card h2 {
  color: var(--green);
  font-size: 25px;
  line-height: 1.25;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid #d6c7ad;
}

.menu-card ul {
  list-style: none;
}

.menu-card li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px dotted #cabda4;
  line-height: 1.45;
  font-size: 16px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.menu-card li.single {
  display: block;
  color: var(--green);
  font-weight: bold;
}

.menu-card li span {
  flex: 1 1 auto;
  min-width: 0;
}

.menu-card strong {
  color: var(--green);
  white-space: normal;
  text-align: right;
}

.sunday-section {
  background: var(--cream);
  padding: 10px 25px 70px;
}

.sunday-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 42px 34px;
  border-radius: 26px;
  background: linear-gradient(180deg,#2d6630,#1f4d25);
  color: #fff6e7;
  border: 2px solid #a8c874;
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
  text-align: center;
}

.sunday-kicker {
  color: #d8edb2;
  letter-spacing: 5px;
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 8px;
}

.sunday-card h2 {
  color: #fff6e7;
  font-size: 42px;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

.sunday-text {
  max-width: 720px;
  margin: 0 auto;
  color: #fff6e7;
  font-size: 21px;
  line-height: 1.7;
}

.sunday-line {
  width: 90px;
  height: 2px;
  background: #a8c874;
  margin: 30px auto;
}

.sunday-reserve {
  color: #d8edb2;
  font-size: 25px;
  font-weight: bold;
}

@media (max-width: 1150px) {
  .site-header {
    position: static;
    flex-direction: column;
  }

  .brand {
    min-width: 0;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 20px;
  }

  .round-note {
    display: none;
  }

  .feature-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .brand strong {
    font-size: 25px;
  }

  .brand-seal {
    width: 66px;
    height: 66px;
  }

  .whatsapp-top {
    width: 100%;
    text-align: center;
  }

  .hero {
    min-height: 650px;
  }

  .hero-inner {
    margin: 0 auto;
    padding: 58px 22px;
  }

  .eyebrow {
    font-size: 15px;
    letter-spacing: 4px;
  }

  .hero-text {
    font-size: 19px;
  }

  .feature-panel,
  .contact-strip,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .feature-panel article,
  .contact-item {
    border-right: 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
  }

  .welcome-block h2 {
    font-size: 27px;
  }

  .menu-card li {
    flex-direction: column;
    gap: 4px;
  }

  .sunday-card {
    padding: 32px 22px;
  }

  .sunday-card h2 {
    font-size: 32px;
  }

  .sunday-text {
    font-size: 18px;
  }

  .sunday-reserve {
    font-size: 21px;
  }
}


/* Stabilisierung nach Entfernen des grünen Hinweises */
.hero{
  min-height:690px;
}

.hero-inner{
  max-width:720px;
}

.feature-panel{
  margin-top:-42px;
}


/* Feine einfarbige Retro-Linienicons */
.line-icon{
  width:44px;
  height:44px;
  display:block;
  margin:0 auto 12px;
  stroke:#2f5f31;
  stroke-width:3.6;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.brand-seal{
  display:grid;
  place-items:center;
}

.brand-seal .line-icon{
  width:46px;
  height:46px;
  margin:0;
  stroke:#2f5f31;
  stroke-width:3.2;
}

.feature-icon{
  display:block;
  margin-bottom:12px;
}

.feature-icon .line-icon,
.feature-panel article > .line-icon{
  opacity:1;
}


/* Kontaktseite */
.contact-page{
  background:#efe3cd;
}

.contact-hero{
  min-height:360px;
  background:
    linear-gradient(rgba(16,39,19,.82), rgba(16,39,19,.82)),
    url("assets/gasthaus-historisch.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.contact-overlay{
  color:#fff6e7;
  padding:40px 20px;
}

.contact-kicker{
  color:#b8cf86;
  letter-spacing:5px;
  text-transform:uppercase;
  margin-bottom:14px;
  font-weight:bold;
}

.contact-hero h1{
  font-size:68px;
  margin-bottom:18px;
}

.contact-sub{
  font-size:22px;
}

.contact-grid{
  max-width:1200px;
  margin:0 auto;
  padding:70px 30px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}

.contact-card{
  background:#fffaf0;
  border:1px solid rgba(47,95,49,.18);
  border-radius:20px;
  padding:34px;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
}

.contact-card h2{
  color:#2f5f31;
  margin-bottom:18px;
  font-size:28px;
}

.contact-card p{
  line-height:1.7;
  font-size:18px;
  color:#2d3029;
}

.contact-button{
  margin-top:18px;
  display:inline-block;
  background:linear-gradient(180deg,#4a8544,#2f6d35);
  color:white;
  text-decoration:none;
  padding:14px 24px;
  border-radius:10px;
  font-weight:bold;
}

@media(max-width:720px){
  .contact-grid{
    grid-template-columns:1fr;
  }

  .contact-hero h1{
    font-size:46px;
  }
}


.maps-button{
  margin-top:20px;
}


/* Wiederhergestelltes Retro-Logo */
.brand-seal{
  width:86px;
  height:86px;
  display:grid;
  place-items:center;
  border:4px solid #2f5f31;
  border-radius:50%;
  background:#fbf4e6;
  box-shadow:inset 0 0 0 8px #f3e8d2;
  color:#2f5f31;
  font-size:38px;
  font-family:Georgia, serif;
  font-weight:bold;
  line-height:1;
}


/* Originalstil Logo */
.brand-seal{
  width:92px;
  height:92px;
  display:grid;
  place-items:center;
  color:#2f5f31;
  flex:0 0 auto;
}

.logo-svg{
  width:92px;
  height:92px;
  display:block;
}


/* Logo: zwei Ährenkränze mit Bierkrug */
.brand-seal{
  width:92px;
  height:92px;
  display:grid;
  place-items:center;
  border:none !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  color:#2f5f31;
  flex:0 0 auto;
}

.logo-svg{
  width:92px;
  height:92px;
  display:block;
  color:#2f5f31;
}


/* Original Logo aus Screenshot */
.brand-seal{
  width:92px;
  height:92px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:transparent !important;
  border:none !important;
  box-shadow:none !important;
  padding:0;
  overflow:hidden;
}

.logo-image{
  width:92px;
  height:auto;
  display:block;
}


/* Logo harmonischer eingebunden */
.brand{
  gap:18px;
}

.brand-seal{
  width:96px;
  height:96px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:transparent !important;
  border:none !important;
  box-shadow:none !important;
  overflow:visible;
}

.logo-image{
  width:96px;
  height:auto;
  display:block;
  filter:
    contrast(1.03)
    saturate(0.9);
  opacity:0.96;
}


/* Rechtliche Seiten */
.legal-page{
  background:#efe3cd;
}

.legal-hero{
  text-align:center;
  color:white;
  padding:75px 30px;
  background:
    linear-gradient(rgba(20,42,20,.88), rgba(20,42,20,.88)),
    url("assets/gasthaus-historisch.jpg") center/cover no-repeat;
}

.legal-hero p{
  color:#b8cf86;
  text-transform:uppercase;
  letter-spacing:5px;
  font-weight:bold;
  margin-bottom:12px;
}

.legal-hero h1{
  font-size:clamp(42px, 6vw, 72px);
}

.legal-card{
  max-width:980px;
  margin:70px auto;
  background:#fffaf0;
  border:1px solid rgba(47,95,49,.22);
  border-radius:22px;
  padding:42px;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
}

.legal-card h2{
  color:#2f5f31;
  font-size:25px;
  margin:30px 0 12px;
  padding-bottom:10px;
  border-bottom:1px solid #d6c7ad;
}

.legal-card h2:first-child{
  margin-top:0;
}

.legal-card p{
  font-size:17px;
  line-height:1.75;
  color:#2d3029;
  margin-bottom:10px;
}

.legal-card a,
.page-footer a,
.contact-item.legal a{
  color:inherit;
  text-decoration:none;
}

.legal-card a:hover,
.page-footer a:hover,
.contact-item.legal a:hover{
  text-decoration:underline;
}

@media(max-width:720px){
  .legal-card{
    margin:40px 18px;
    padding:28px;
  }
}


/* Küchengalerie */
.food-gallery-section{
  padding:40px 30px 90px;
  background:#efe3cd;
}

.gallery-heading{
  text-align:center;
  margin-bottom:40px;
}

.gallery-heading p{
  color:#567246;
  letter-spacing:5px;
  text-transform:uppercase;
  font-weight:bold;
  margin-bottom:10px;
}

.gallery-heading h2{
  color:#2f5f31;
  font-size:48px;
  margin-bottom:20px;
}

.gallery-heading span{
  width:110px;
  height:2px;
  background:#bda67a;
  display:inline-block;
}

.food-gallery{
  max-width:1350px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.food-card{
  background:#fff8ed;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(47,95,49,.18);
  box-shadow:0 10px 28px rgba(0,0,0,.12);
  transition:transform .25s ease, box-shadow .25s ease;
}

.food-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 34px rgba(0,0,0,.16);
}

.food-card img{
  width:100%;
  height:360px;
  object-fit:cover;
  display:block;
  filter:
    brightness(.95)
    contrast(1.02)
    saturate(.95);
}

.food-card figcaption{
  padding:22px 24px;
  color:#2f5f31;
  font-size:22px;
  text-align:center;
  background:linear-gradient(180deg,#fffaf2,#f2e4cb);
}

@media(max-width:900px){
  .food-gallery{
    grid-template-columns:1fr;
  }

  .gallery-heading h2{
    font-size:34px;
  }

  .food-card img{
    height:300px;
  }
}


/* Google Fonts Optimierung */
body{
  font-family:'Cormorant Garamond', Georgia, serif;
}

.script{
  font-family:'Great Vibes', cursive;
}

.brand strong,
.hero h1,
.menu-hero h1,
.contact-hero h1,
.legal-hero h1{
  font-family:'Cormorant Garamond', Georgia, serif;
  font-weight:700;
  letter-spacing:.2px;
}

.hero-text,
.menu-card li,
.contact-card p,
.legal-card p{
  font-weight:500;
}


/* =========================
   FINALER FEINSCHLIFF
========================= */

/* Header eleganter */
.site-header{
  min-height:118px;
  padding:20px 5vw;
  backdrop-filter:blur(4px);
}

.main-nav{
  gap:28px;
}

.main-nav a{
  font-size:17px;
  letter-spacing:.3px;
}

.brand{
  gap:20px;
}

.brand-seal{
  width:88px;
  height:88px;
}

.logo-image{
  width:88px;
}

/* Schreibschrift weicher */
.script{
  opacity:.88;
  letter-spacing:.5px;
  text-shadow:0 2px 10px rgba(0,0,0,.22);
  transform:translateY(-3px);
}

/* Hero etwas hochwertiger */
.hero{
  position:relative;
}

.hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:140px;
  background:
    linear-gradient(to bottom,
      rgba(239,227,205,0),
      rgba(239,227,205,.78),
      rgba(239,227,205,1));
  pointer-events:none;
}

/* Übergänge weicher */
.feature-panel{
  position:relative;
  z-index:5;
  border:1px solid rgba(180,150,95,.35);
  box-shadow:
    0 18px 42px rgba(0,0,0,.16),
    0 0 0 7px rgba(255,250,240,.6);
}

/* Karten edler */
.feature-panel article{
  background:
    linear-gradient(180deg,#fffaf2,#f8eedc);
}

.visit-card{
  background:
    linear-gradient(180deg,#366e39,#214e25);
}

/* Galerie gemütlicher */
.food-gallery-section{
  position:relative;
  background:
    linear-gradient(180deg,#efe3cd,#f6ecda);
}

.food-gallery-section::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:160px;
  height:1px;
  background:#bda67a;
}

.food-card{
  background:#fff8ee;
  border:1px solid rgba(120,95,52,.18);
  box-shadow:
    0 8px 18px rgba(0,0,0,.10),
    inset 0 0 0 6px rgba(255,252,245,.65);
}

.food-card:hover{
  transform:translateY(-3px);
  box-shadow:
    0 14px 28px rgba(0,0,0,.12),
    inset 0 0 0 6px rgba(255,252,245,.72);
}

.food-card img{
  filter:
    brightness(.97)
    contrast(1.01)
    saturate(.92)
    sepia(.05);
}

.food-card figcaption{
  font-size:21px;
  background:
    linear-gradient(180deg,#fffaf2,#efe0c2);
}

/* Speisekarte hochwertiger */
.menu-card{
  background:
    linear-gradient(180deg,#fffaf2,#f8ecd8);
  border:1px solid rgba(150,125,82,.22);
  box-shadow:
    0 8px 22px rgba(0,0,0,.08),
    inset 0 0 0 5px rgba(255,252,245,.6);
}

.menu-card h2{
  letter-spacing:.4px;
}

/* Kontaktseite gemütlicher */
.contact-card{
  background:
    linear-gradient(180deg,#fffaf2,#f5e8d1);
  border:1px solid rgba(150,125,82,.18);
  box-shadow:
    0 8px 22px rgba(0,0,0,.08),
    inset 0 0 0 5px rgba(255,252,245,.55);
}

.contact-hero::after{
  content:"";
  display:block;
  width:140px;
  height:2px;
  background:#b8cf86;
  margin:26px auto 0;
  opacity:.7;
}

/* Rechtliche Seiten edler */
.legal-card{
  background:
    linear-gradient(180deg,#fffaf2,#f5e7cf);
  box-shadow:
    0 8px 22px rgba(0,0,0,.08),
    inset 0 0 0 5px rgba(255,252,245,.55);
}

/* Footer besserer Abschluss */
.page-footer{
  position:relative;
  border-top:1px solid rgba(183,212,134,.28);
  letter-spacing:.4px;
}

.page-footer::before{
  content:"✦";
  position:absolute;
  top:-12px;
  left:50%;
  transform:translateX(-50%);
  width:28px;
  height:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#b8cf86;
  background:#0d2511;
  border-radius:50%;
  font-size:13px;
}

/* Allgemein weicher */
button,
a,
.food-card,
.menu-card,
.contact-card,
.feature-panel article{
  transition:
    all .22s ease;
}


/* Grüner Besuchsblock deutlich sichtbar */
.visit-card{
  background:linear-gradient(180deg,#3b7440,#214e25) !important;
  color:#fff6e7 !important;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.visit-card h2{
  color:#fff6e7 !important;
  font-size:28px;
  margin-bottom:14px;
  letter-spacing:1px;
}

.visit-card p{
  color:#f6efdf !important;
  font-size:17px;
  line-height:1.6;
  max-width:240px;
}


/* Hinweis Wochenkarte */
.weekly-note{
  grid-column:1 / -1;
  display:flex;
  justify-content:center;
  margin:10px 0 16px;
}

.weekly-note-card{
  width:min(760px, 100%);
  background:linear-gradient(180deg,#356c39,#214e25);
  border:2px solid #a8c874;
  border-radius:24px;
  padding:34px 28px;
  text-align:center;
  color:#fff6e7;
  box-shadow:0 12px 28px rgba(0,0,0,.14);
}

.weekly-kicker{
  color:#d8edb2;
  letter-spacing:5px;
  font-size:14px;
  font-weight:bold;
  margin-bottom:8px;
}

.weekly-note-card h2{
  color:#fff6e7;
  font-size:42px;
  margin-bottom:18px;
}

.weekly-line{
  width:90px;
  height:2px;
  background:#b8cf86;
  margin:0 auto 22px;
}

.weekly-note-card p:last-child{
  font-size:22px;
  line-height:1.6;
  color:#f8efd9;
}

@media(max-width:720px){
  .weekly-note-card h2{
    font-size:32px;
  }

  .weekly-note-card p:last-child{
    font-size:18px;
  }
}


.weekly-note{
  grid-column:1 / -1 !important;
  width:100%;
  margin:28px 0 34px !important;
  display:flex !important;
  justify-content:center !important;
}

.weekly-note-card{
  width:min(820px,100%) !important;
  background:linear-gradient(180deg,#356c39,#214e25) !important;
  border:2px solid #b8cf86 !important;
  border-radius:24px !important;
  padding:36px 30px !important;
  text-align:center !important;
  color:#fff6e7 !important;
  box-shadow:0 16px 34px rgba(0,0,0,.16) !important;
}

.weekly-note-card h2{
  color:#fff6e7 !important;
  font-size:44px !important;
}

.weekly-note-card p:last-child{
  color:#f8efd9 !important;
  font-size:22px !important;
  line-height:1.7 !important;
}


/* Dezente Scroll-Animationen */
.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:
    opacity .75s ease,
    transform .75s ease;
}

.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

/* Respektiert reduzierte Bewegungen */
@media (prefers-reduced-motion: reduce){
  .reveal{
    opacity:1;
    transform:none;
    transition:none;
  }
}


/* QR-Code Speisekarte */
.qr-menu-section{
  display:flex;
  justify-content:flex-end;
  padding:10px 40px 50px;
  background:#efe3cd;
}

.qr-menu-box{
  width:150px;
  background:linear-gradient(180deg,#fffaf2,#f1e2c7);
  border:1px solid rgba(120,95,52,.18);
  border-radius:18px;
  padding:14px;
  text-align:center;
  box-shadow:
    0 8px 18px rgba(0,0,0,.08),
    inset 0 0 0 4px rgba(255,252,245,.65);
}

.qr-menu-box img{
  width:100%;
  height:auto;
  display:block;
  border-radius:10px;
}

.qr-menu-box p{
  margin-top:12px;
  color:#2f5f31;
  font-size:17px;
  font-weight:600;
}

@media(max-width:720px){
  .qr-menu-section{
    justify-content:center;
    padding-bottom:40px;
  }
}


/* QR-Code oben rechts im Titelbereich */
.menu-hero{
  position:relative;
}

.qr-hero-box{
  position:absolute;
  top:26px;
  right:32px;
  width:130px;
  background:rgba(255,250,242,.94);
  border:1px solid rgba(120,95,52,.18);
  border-radius:18px;
  padding:12px;
  text-align:center;
  box-shadow:
    0 8px 18px rgba(0,0,0,.12),
    inset 0 0 0 4px rgba(255,252,245,.72);
  backdrop-filter:blur(3px);
}

.qr-hero-box img{
  width:100%;
  height:auto;
  display:block;
  border-radius:10px;
}

.qr-hero-box p{
  margin-top:10px;
  color:#2f5f31;
  font-size:15px;
  font-weight:600;
  line-height:1.35;
}

@media(max-width:720px){
  .qr-hero-box{
    position:static;
    margin:24px auto 0;
    width:140px;
  }
}
