/* ============================================
   Schlemmergrill Borgholzhausen – Stylesheet
   Farben & Stil angelehnt an das Holz-Logo
   ============================================ */

:root {
  --wood-dark: #3d2b1f;
  --wood: #5a3e2b;
  --wood-light: #7a5539;
  --red: #c0392b;
  --red-dark: #96281b;
  --cream: #f7f1e3;
  --cream-dark: #efe5cf;
  --text: #33261c;
  --text-light: #6b5a4c;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(61, 43, 31, 0.15);
  --radius: 14px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: "Nunito Sans", system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

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

a { color: var(--red); }

/* ===== Typografie-Helfer ===== */
.section-kicker {
  font-family: "Dancing Script", cursive;
  font-size: 1.6rem;
  color: var(--red);
  margin-bottom: 0.25rem;
}
.section-kicker.light { color: #e8b9a0; }

.section-title {
  font-family: "Alfa Slab One", serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--wood-dark);
  letter-spacing: 0.5px;
}
.section-title.light { color: var(--cream); }

.accent-script {
  font-family: "Dancing Script", cursive;
  color: var(--red);
  font-size: 1.15em;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.25); }

.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); }

.btn-outline {
  border: 2px solid var(--cream);
  color: var(--cream);
  background: transparent;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

/* ===== Navigation ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(61, 43, 31, 0.97);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.nav-brand {
  text-decoration: none;
  font-size: 1.4rem;
  line-height: 1;
}
.brand-schlemmer {
  font-family: "Alfa Slab One", serif;
  color: var(--cream);
  letter-spacing: 1px;
}
.brand-grill {
  font-family: "Dancing Script", cursive;
  color: #e74c3c;
  font-size: 1.25em;
  margin-left: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
}
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  opacity: 0.9;
  transition: opacity 0.15s;
}
.nav-links a:hover { opacity: 1; color: #ff8a75; }

.nav-cta {
  background: var(--red);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  opacity: 1 !important;
}
.nav-cta:hover { background: var(--red-dark); color: var(--cream) !important; }

.lang-toggle {
  background: transparent;
  border: 2px solid rgba(247, 241, 227, 0.45);
  color: var(--cream);
  border-radius: 50px;
  padding: 0.4rem 0.9rem;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.lang-toggle:hover { background: rgba(255,255,255,0.12); border-color: var(--cream); }
.lang-toggle span { opacity: 0.5; transition: opacity 0.15s, color 0.15s; }
.lang-toggle .lang-sep { margin: 0 0.35rem; opacity: 0.35; }
.lang-toggle .active { opacity: 1; color: #ffd97a; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(122, 85, 57, 0.55), transparent 60%),
    repeating-linear-gradient(90deg,
      #4a3423 0px, #52392a 90px, #45301f 180px, #503826 270px, #4a3423 360px),
    var(--wood-dark);
  color: var(--cream);
  text-align: center;
  padding: 90px 0 110px;
  overflow: hidden;
}
/* Holzmaserung andeuten */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg,
    transparent 0px, transparent 88px,
    rgba(0,0,0,0.18) 89px, rgba(0,0,0,0.18) 91px);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(247, 241, 227, 0.35);
  color: #ffd97a;
  border-radius: 50px;
  padding: 0.45rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s, border-color 0.15s;
}
.hero-badge:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #ffd97a;
  transform: translateY(-2px);
}

.hero h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.95;
}
.hero-schlemmer {
  font-family: "Alfa Slab One", serif;
  font-size: clamp(2.6rem, 9vw, 5.5rem);
  letter-spacing: 4px;
  color: var(--cream);
  text-shadow: 3px 3px 0 rgba(0,0,0,0.35);
}
.hero-grill {
  font-family: "Dancing Script", cursive;
  font-size: clamp(2.6rem, 8vw, 5rem);
  color: #e74c3c;
  margin-top: -0.4rem;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.35);
  transform: rotate(-4deg);
}

.hero-ribbon {
  display: inline-block;
  background: var(--red);
  color: var(--cream);
  font-weight: 800;
  letter-spacing: 3px;
  font-size: 0.95rem;
  padding: 0.45rem 2rem;
  margin: 1.4rem auto 1.2rem;
  clip-path: polygon(3% 0, 97% 0, 100% 50%, 97% 100%, 3% 100%, 0 50%);
}

.hero-sub {
  font-size: 1.15rem;
  opacity: 0.92;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-open-status {
  margin-top: 1.6rem;
  font-weight: 800;
  font-size: 1rem;
  min-height: 1.5em;
}
.hero-open-status .open { color: #7bed9f; }
.hero-open-status .closed-now { color: #ffb8a8; }

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 1;
}
.hero-wave svg { width: 100%; height: 60px; }

/* ===== Highlights ===== */
.highlights { padding: 60px 0 30px; }

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}

.highlight {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--red);
}
.highlight-icon { font-size: 2.2rem; margin-bottom: 0.6rem; }
.highlight h3 { color: var(--wood-dark); margin-bottom: 0.4rem; font-size: 1.1rem; }
.highlight p { color: var(--text-light); font-size: 0.95rem; }

/* ===== Speisekarte ===== */
.menu-section { padding: 70px 0; text-align: center; }

.menu-note {
  display: inline-block;
  background: #fff3cd;
  border: 1px dashed #d4a017;
  color: #7a5c00;
  border-radius: 8px;
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
  text-align: left;
}

.menu-category {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}
.menu-category h3 {
  font-family: "Alfa Slab One", serif;
  font-weight: 400;
  color: var(--wood-dark);
  font-size: 1.15rem;
  border-bottom: 3px solid var(--red);
  padding-bottom: 0.6rem;
  margin-bottom: 1rem;
}
.menu-category ul { list-style: none; }
.menu-category li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.55rem 0;
  font-size: 0.98rem;
}
.dish { font-weight: 600; }
.dots {
  flex: 1;
  border-bottom: 2px dotted #cbb9a5;
  transform: translateY(-4px);
}
.price { font-weight: 800; color: var(--red); white-space: nowrap; }

.dish .marks {
  color: var(--red);
  font-weight: 700;
  font-size: 0.68em;
  margin-left: 3px;
  letter-spacing: 0.5px;
}

/* Tooltip beim Hovern über ein Kennzeichen */
.mark {
  position: relative;
  cursor: help;
  padding: 2px 1px;
}
.mark:hover { color: var(--red-dark); }
.mark::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 7px);
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  background: var(--wood-dark);
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0;
  padding: 0.4rem 0.7rem;
  border-radius: 7px;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.12s ease, transform 0.12s ease;
  z-index: 20;
}
.mark::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--wood-dark);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.12s ease;
  z-index: 20;
}
.mark:hover::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
.mark:hover::before { opacity: 1; }

.menu-legend {
  max-width: 820px;
  margin: 2.2rem auto 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem 1.8rem;
  text-align: left;
  font-size: 0.85rem;
  color: var(--text-light);
}
.menu-legend h4 {
  color: var(--wood-dark);
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}
.menu-legend ul {
  list-style: none;
  columns: 2;
  column-gap: 2.5rem;
}
.menu-legend li { padding: 0.15rem 0; break-inside: avoid; }
.menu-legend strong { color: var(--red); display: inline-block; min-width: 1.6em; }
.legend-hint {
  margin-top: 0.9rem;
  font-style: italic;
  border-top: 1px solid #eee3d0;
  padding-top: 0.7rem;
}

@media (max-width: 600px) {
  .menu-legend ul { columns: 1; }
}

.menu-footer { margin-top: 2rem; color: var(--text-light); font-weight: 600; }

/* ===== Galerie ===== */
.gallery-section {
  padding: 70px 0;
  text-align: center;
  background: var(--cream-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
  margin-top: 1rem;
}

.gallery-item {
  background: var(--white);
  padding: 0.8rem 0.8rem 1rem;
  border-radius: 6px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery-item:nth-child(odd) { transform: rotate(-1.5deg); }
.gallery-item:nth-child(even) { transform: rotate(1.5deg); }
.gallery-item:hover {
  transform: rotate(0deg) scale(1.04);
  box-shadow: 0 16px 40px rgba(61, 43, 31, 0.3);
  z-index: 2;
  position: relative;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
}

.gallery-item figcaption {
  font-family: "Dancing Script", cursive;
  font-size: 1.25rem;
  color: var(--wood);
  margin-top: 0.7rem;
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(30, 20, 12, 0.92);
  padding: 2rem;
}
.lightbox.open { display: flex; }

.lightbox figure {
  max-width: min(1000px, 90vw);
  text-align: center;
}
.lightbox img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 8px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
  border: 6px solid var(--white);
}
.lightbox figcaption {
  font-family: "Dancing Script", cursive;
  font-size: 1.6rem;
  color: var(--cream);
  margin-top: 1rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(247, 241, 227, 0.12);
  border: 1px solid rgba(247, 241, 227, 0.35);
  color: var(--cream);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--red); }

.lightbox-close { top: 1.2rem; right: 1.2rem; }
.lightbox-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); font-size: 2.2rem; }
.lightbox-next { right: 1.2rem; top: 50%; transform: translateY(-50%); font-size: 2.2rem; }

@media (max-width: 600px) {
  .lightbox { padding: 1rem; }
  .lightbox-prev { left: 0.4rem; }
  .lightbox-next { right: 0.4rem; }
}

/* ===== Team ===== */
.team-section { padding: 70px 0; text-align: center; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.6rem;
  margin-top: 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.2rem;
  box-shadow: var(--shadow);
  border-bottom: 4px solid var(--red);
}

.team-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: cover;
  border: 4px solid var(--cream-dark);
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.team-card h3 {
  color: var(--wood-dark);
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}
.team-role {
  font-family: "Dancing Script", cursive;
  font-size: 1.25rem;
  color: var(--red);
}

/* ===== Über uns ===== */
.about-section {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(122, 85, 57, 0.5), transparent 55%),
    var(--wood-dark);
  color: var(--cream);
  padding: 80px 0;
}

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

.about-text p { margin-bottom: 1rem; opacity: 0.92; }
.about-signature {
  font-family: "Dancing Script", cursive;
  font-size: 1.5rem;
  color: #ffd97a;
}

.about-card {
  background: var(--cream);
  color: var(--text);
  border-radius: var(--radius);
  padding: 2.2rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  transform: rotate(1.5deg);
}
.review-stars { color: #f5a623; font-size: 1.8rem; letter-spacing: 4px; }
.review-score {
  font-family: "Alfa Slab One", serif;
  font-size: 2.4rem;
  color: var(--wood-dark);
  margin: 0.3rem 0 0.1rem;
}
.review-count { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1.2rem; }
.about-card blockquote {
  font-style: italic;
  color: var(--text);
  border-top: 2px solid var(--cream-dark);
  padding-top: 1.2rem;
}

.review-btn { margin-top: 1.4rem; }
.review-note {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===== Öffnungszeiten ===== */
.hours-section { padding: 70px 0; text-align: center; }

.hours-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem 2rem;
}

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid #eee3d0;
  text-align: left;
}
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:first-child { font-weight: 800; color: var(--wood-dark); }
.hours-table td:last-child { text-align: right; font-weight: 600; }
.hours-table tr.closed td:last-child { color: var(--red); font-weight: 800; }
.hours-table tr.today {
  background: #fdf0ee;
}
.hours-table tr.today td:first-child::after {
  content: " · Heute";
  color: var(--red);
  font-size: 0.8em;
}
html[lang="en"] .hours-table tr.today td:first-child::after {
  content: " · Today";
}

/* ===== Kontakt ===== */
.contact-section { padding: 70px 0 90px; background: var(--cream-dark); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-list { list-style: none; margin: 1rem 0 2rem; }
.contact-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.3rem;
}
.contact-icon { font-size: 1.6rem; line-height: 1.2; }

.contact-map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

/* Platzhalter, solange die Karte nicht geladen ist */
.map-consent {
  height: 380px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
  border: 2px dashed #d8c7ae;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.6rem;
  gap: 0.4rem;
}
.map-consent[hidden] { display: none; }
.map-consent-icon { font-size: 2.6rem; }
.map-consent-text {
  max-width: 34ch;
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 0.6rem;
}
.map-consent-note {
  font-size: 0.78rem;
  color: var(--text-light);
  opacity: 0.8;
  margin-top: 0.6rem;
}

.map-revoke {
  display: block;
  margin: 0.7rem 0 0 auto;
  background: none;
  border: none;
  padding: 0.2rem 0;
  font-family: inherit;
  font-size: 0.78rem;
  color: var(--text-light);
  text-decoration: underline;
  cursor: pointer;
}
.map-revoke:hover { color: var(--red); }
.map-revoke[hidden] { display: none; }

/* ===== Footer ===== */
.site-footer {
  background: var(--wood-dark);
  color: var(--cream);
  padding: 50px 0 0;
}
.site-footer a { color: #ff8a75; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-brand { font-size: 1.5rem; margin-bottom: 0.6rem; }
.footer-heading { font-weight: 800; margin-bottom: 0.6rem; color: #ffd97a; }

.footer-bottom {
  border-top: 1px solid rgba(247, 241, 227, 0.15);
  text-align: center;
  padding: 1.2rem 0;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ===== Kompakte Navigation bei mittlerer Breite ===== */
@media (min-width: 821px) and (max-width: 1120px) {
  .nav-brand { font-size: 1.15rem; }
  .nav-links { gap: 0.75rem; }
  .nav-links a { font-size: 0.83rem; }
  .nav-cta { padding: 0.4rem 0.7rem; }
  .lang-toggle { padding: 0.3rem 0.6rem; font-size: 0.78rem; }
}

/* ===== Mobil ===== */
@media (max-width: 820px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--wood-dark);
    flex-direction: column;
    padding: 1.2rem 0 1.6rem;
    gap: 1.1rem;
    box-shadow: 0 12px 24px rgba(0,0,0,0.35);
  }
  .nav-links.open { display: flex; }

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

  .about-card { transform: none; }

  .hero { padding: 60px 0 90px; }
}

@media (max-width: 480px) {
  .hero-ribbon {
    font-size: 0.75rem;
    letter-spacing: 2px;
    padding: 0.45rem 1.2rem;
    white-space: nowrap;
  }
}
