/* ============================================================
   earlys – Stylesheet
   Aufbau: 1) Design-Tokens  2) Reset  3) Layout  4) Komponenten
   Farben/Schriften zentral als CSS-Variablen — hier ändern wirkt überall.
   ============================================================ */

/* 1) DESIGN-TOKENS ------------------------------------------- */
:root {
  --sage: #6E7A4F;        /* Primär (Logo, Buttons, Akzente) */
  --forest: #3A4626;      /* Headlines, dunkle Flächen */
  --cream: #F7F3E7;       /* Haupt-Hintergrund */
  --sand: #E7DFC6;        /* Sekundäre Flächen */
  --sand-2: #EFE9D6;      /* Hellere Sektionsfläche */
  --text: #2C3320;        /* Standard-Textfarbe */
  --veg: #639922;         /* veggie/vegan-Kennzeichnung */
  --on-dark: #EDE8D6;     /* Text auf dunklem Grün */

  --font-sans: 'Poppins', system-ui, sans-serif;
  --font-script: 'Sacramento', cursive;

  --radius: 14px;
  --radius-pill: 24px;
  --maxw: 1100px;         /* Desktop-Maximalbreite */
}

/* 2) RESET --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* 3) LAYOUT-HILFEN ------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 18px; }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); }

/* 4) KOMPONENTEN -------------------------------------------- */

/* Navigation */
.nav { position: sticky; top: 0; z-index: 50; background: var(--cream); border-bottom: 1px solid rgba(58,70,38,.1); }
.nav-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 18px; }
.logo { font-weight: 800; font-size: 22px; color: var(--sage); letter-spacing: -.5px; }
.nav-links { display: flex; gap: 20px; font-size: 14px; font-weight: 500; color: var(--forest); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-toggle { background: none; border: 1px solid var(--sage); color: var(--sage); font: inherit; font-size: 12px; font-weight: 600; border-radius: var(--radius-pill); padding: 4px 12px; cursor: pointer; }
.burger { display: none; background: none; border: none; color: var(--forest); font-size: 24px; cursor: pointer; }

/* Buttons */
.btn { display: inline-block; font-size: 14px; font-weight: 600; padding: 11px 20px; border-radius: var(--radius-pill); cursor: pointer; }
.btn-dark { background: var(--forest); color: var(--on-dark); }
.btn-outline { border: 1.5px solid var(--forest); color: var(--forest); }

/* Hero */
.hero { background: var(--cream); padding: 30px 0 36px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center; }
.hero-text { position: relative; }
.hero-tape { position: absolute; top: -6px; right: 0; background: var(--sage); color: #fff; font-size: 11px; font-weight: 700; padding: 8px 11px; border-radius: 8px; transform: rotate(6deg); text-align: center; line-height: 1.2; }
.kicker { font-size: 12px; letter-spacing: 3px; font-weight: 600; color: var(--sage); margin-bottom: 12px; }
.hero-title { font-size: 52px; line-height: 1.0; font-weight: 800; color: var(--forest); }
.hero-title .accent { color: var(--sage); }
.mark { position: relative; display: inline-block; }
.mark::after { content: ""; position: absolute; left: -2px; right: -2px; bottom: 4px; height: 11px; background: var(--sage); opacity: .4; border-radius: 3px; z-index: -1; transform: rotate(-1.5deg); }
.heart { color: var(--sage); font-size: 0.5em; vertical-align: middle; }
.script { font-family: var(--font-script); color: var(--sage); font-size: 46px; line-height: .8; margin: 6px 0 0; }
.hero-sub { font-size: 15px; color: #5a5f4a; margin: 18px 0 22px; max-width: 46ch; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-photo, .about-photo { background: var(--sand); border-radius: var(--radius); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; color: #8a8362; }
.hero-photo { height: 280px; font-size: 40px; }
.hero-photo span { font-size: 11px; }
.about-photo { height: 220px; font-size: 40px; }

/* Infobar */
.infobar { background: var(--forest); color: var(--on-dark); }
.infobar-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: center; padding: 14px 18px; font-size: 14px; }
.infobar-item { display: inline-flex; align-items: center; gap: 6px; }
.status-badge { display: inline-flex; align-items: center; gap: 7px; background: var(--sage); color: #fff; font-weight: 600; padding: 4px 13px; border-radius: var(--radius-pill); font-size: 13px; }
.status-badge.closed { background: #8a8362; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #b6e3a0; }
.status-badge.closed .status-dot { background: #e0d9c4; }

/* USPs */
.usps { background: var(--sand-2); }
.usps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 28px 18px; }
.usp { display: flex; gap: 11px; align-items: center; }
.usp-ic { width: 40px; height: 40px; border-radius: 50%; background: var(--sage); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.usp-t { font-size: 13px; font-weight: 600; line-height: 1.25; }
.usp-d { font-size: 11px; color: #7a7a6a; }

/* Sektionen allgemein */
.section { padding: 40px 0; }
.section-label { font-size: 12px; letter-spacing: 2px; color: var(--sage); font-weight: 600; display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.section-title { font-size: 30px; font-weight: 800; color: var(--forest); margin-bottom: 20px; }

/* Speisekarte */
.menu-cat { font-size: 22px; font-weight: 800; color: var(--forest); margin: 24px 0 8px; }
.menu-item { display: flex; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(58,70,38,.12); }
.menu-name { font-size: 15px; font-weight: 600; }
.menu-desc { font-size: 12px; color: #7a7a6a; margin-top: 3px; }
.menu-price { font-size: 15px; font-weight: 700; color: var(--sage); white-space: nowrap; }
.veg-tag { font-size: 9px; font-weight: 600; color: var(--veg); border: 1px solid var(--veg); border-radius: 4px; padding: 1px 5px; margin-left: 6px; vertical-align: middle; }
.menu-note { font-size: 12px; color: #7a7a6a; font-style: italic; margin-top: 8px; }

/* Über uns / Finden Grids */
.about { background: var(--sand-2); }
.about-grid, .find-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.about-text, .find-addr, .find-note { font-size: 15px; color: #5a5f4a; }
.find-addr { margin-bottom: 16px; font-weight: 500; color: var(--text); }
.find-note { margin-top: 16px; font-size: 13px; }
.hours-card { background: var(--cream); border: 1px solid rgba(58,70,38,.12); border-radius: var(--radius); padding: 20px; }
.hours-card h3 { color: var(--forest); margin-bottom: 12px; }
.hours-table { width: 100%; font-size: 14px; border-collapse: collapse; }
.hours-table td { padding: 6px 0; }
.hours-table td:last-child { text-align: right; }
.hours-table tr.is-today { font-weight: 700; color: var(--sage); }

/* Kontakt */
.contact { background: var(--forest); color: var(--on-dark); text-align: center; }
.contact .section-title { color: var(--on-dark); }
.contact-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; font-size: 15px; }
.contact-links a { display: inline-flex; align-items: center; gap: 7px; }

/* Footer */
.footer { background: var(--cream); padding: 22px 0; border-top: 1px solid rgba(58,70,38,.1); }
.footer-row { display: flex; align-items: center; justify-content: space-between; }
.footer-links { display: flex; gap: 18px; font-size: 13px; color: var(--sage); }

/* 5) RESPONSIVE (mobile-first Feinschliff) ------------------ */
@media (max-width: 760px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); flex-direction: column; gap: 0; padding: 8px 18px 16px; border-bottom: 1px solid rgba(58,70,38,.1); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; }
  .burger { display: block; }
  .hero-grid, .about-grid, .find-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 36px; }
  .script { font-size: 38px; }
  .hero-tape { position: static; display: inline-block; transform: rotate(0); margin-bottom: 14px; }
  .usps-grid { grid-template-columns: 1fr 1fr; }
  .infobar-row { flex-direction: column; gap: 6px; }
}
