/* ===========================================================
   Hamburger Bierkränzchen – Design System
   Farben aus CI Guidelines: Navy #0d2f6e · Pink #e3017c · Hellpink #efc5e7 · Weiß #ffffff
   Schrift: System-Sans (bewusst KEINE CI-Schriften Reality Stone/Dolce Vita im Web)
   Regel: max. 2 Textgrößen pro Seite (Ausnahme H1/H2/H3), Buttons überall identisch
   =========================================================== */

:root {
  --navy: #0d2f6e;
  --navy-dark: #081d45;
  --pink: #e3017c;
  --pink-dark: #b8015f;
  --pink-light: #efc5e7;
  --white: #ffffff;
  --text: #14224a;
  --radius: 999px;
  --radius-card: 18px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --size-base: 1.08rem;
  --size-lead: 1.28rem;
  --max-width: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--size-base);
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}

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

a { color: var(--pink-dark); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--pink); }

h1, h2, h3 {
  font-family: var(--font);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-link img { height: 78px; width: auto; }
.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  border-bottom: 2px solid var(--pink);
  color: var(--pink-dark);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: var(--navy);
  border-radius: 2px;
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid #eee;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links.open { max-height: 320px; }
  .nav-links li { border-top: 1px solid #f2f2f2; }
  .nav-links a { display: block; padding: 0.9rem 1.5rem; }
}

/* ---------- Header-Bild ---------- */
.page-header-img {
  width: 100%;
  aspect-ratio: 1920 / 600;
  object-fit: cover;
  display: block;
  background: var(--navy);
}

.page-header-fallback {
  width: 100%;
  aspect-ratio: 1920 / 600;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 65%, var(--pink-dark) 130%);
}
.page-header-fallback img { height: 38%; width: auto; filter: brightness(0) invert(1); opacity: 0.92; }

/* ---------- GEO-Zusammenfassung ---------- */
.geo-summary {
  background: var(--pink-light);
  color: var(--navy);
  border-radius: var(--radius-card);
  padding: 1.1rem 1.5rem;
  margin: 1.6rem auto 0;
  font-size: var(--size-lead);
  font-weight: 600;
  max-width: var(--max-width);
}

/* ---------- Sections ---------- */
.section { padding: 2.2rem 0; }
.section-narrow { max-width: 760px; margin: 0 auto; }

/* ---------- Conversion / CTA Flächen ---------- */
.cta-box {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-card);
  padding: 1.6rem 1.8rem;
  margin: 1.8rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cta-box p { margin: 0; font-size: var(--size-lead); font-weight: 700; color: var(--white); }

.btn {
  display: inline-block;
  background: var(--pink);
  color: var(--white) !important;
  font-weight: 700;
  font-size: var(--size-base);
  padding: 0.8rem 1.7rem;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}
.btn:hover { background: var(--pink-dark); color: var(--white) !important; transform: translateY(-1px); }

/* ---------- Bold-Absätze (redaktionell fett markiert) ---------- */
.lead-block { margin: 1.6rem 0; }
.lead-block strong { display: block; color: var(--navy); font-size: var(--size-lead); margin-bottom: 0.3rem; }

/* ---------- Kacheln (Home-Startseite Verlinkung) ---------- */
.kacheln-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin: 2rem 0;
}
@media (max-width: 720px) {
  .kacheln-grid { grid-template-columns: 1fr; }
}
.kachel {
  position: relative;
  display: block;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  text-decoration: none;
  background: var(--navy);
}
.kachel img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s ease;
}
.kachel:hover img { transform: scale(1.05); }
.kachel .kachel-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(13,47,110,0.92) 0%, rgba(13,47,110,0) 100%);
  color: var(--white);
  padding: 1.6rem 1.1rem 1rem;
  font-weight: 700;
  font-size: 1.05rem;
}

/* ---------- Absprung-Banner (eine weiterführende Landingpage) ---------- */
.absprung-banner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--navy);
  border-radius: var(--radius-card);
  overflow: hidden;
  text-decoration: none;
  margin: 2rem 0;
  color: var(--white);
}
.absprung-banner img {
  width: 140px; height: 140px; object-fit: cover; flex-shrink: 0;
}
.absprung-banner .absprung-text {
  padding: 1rem 1.4rem 1rem 0;
  font-weight: 700;
  font-size: var(--size-lead);
  color: var(--white);
}
.absprung-banner:hover { background: var(--navy-dark); }
@media (max-width: 560px) {
  .absprung-banner { flex-direction: column; align-items: stretch; }
  .absprung-banner img { width: 100%; height: 160px; }
  .absprung-banner .absprung-text { padding: 0 1.2rem 1.2rem; }
}

/* ---------- Häufige Fragen ---------- */
.faq-block { margin-top: 1rem; }
.faq-item { border-bottom: 1px solid #eee; padding: 1.1rem 0; }
.faq-item:first-child { border-top: 1px solid #eee; }
.faq-item h3 { color: var(--navy); margin-bottom: 0.35rem; }
.faq-item p { margin: 0; }

/* ---------- Eckdaten / Listen ---------- */
ul.plain { padding-left: 1.2rem; }
ul.plain li { margin-bottom: 0.4rem; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 2rem;
  margin: 1.4rem 0;
}
@media (max-width: 560px) { .info-grid { grid-template-columns: 1fr; } }
.info-grid dt { font-weight: 700; color: var(--navy); }
.info-grid dd { margin: 0 0 0.7rem; }

/* ---------- Menü-Highlight (Pairings) ---------- */
.menu-highlight {
  background: var(--pink);
  color: var(--white);
  border-radius: var(--radius-card);
  padding: 1.6rem 1.8rem;
  margin: 1.8rem 0;
}
.menu-highlight h2 { color: var(--white); margin-bottom: 0.9rem; }
.menu-highlight .menu-steps { margin: 0; padding: 0; list-style: none; }
.menu-highlight .menu-steps li { margin-bottom: 0.5rem; font-weight: 600; }
.menu-highlight img { border-radius: var(--radius-card); margin-top: 1.2rem; }

.menu-secondary {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius-card);
  padding: 1.2rem 1.5rem;
  margin: 1.4rem 0;
  font-weight: 600;
  color: var(--navy);
}

/* ---------- Foto-Grid Impressionen ---------- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin: 1.6rem 0;
}
@media (max-width: 720px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .photo-grid { grid-template-columns: 1fr; } }
.photo-grid button {
  padding: 0; border: none; background: none; cursor: zoom-in;
  border-radius: 10px; overflow: hidden; aspect-ratio: 1/1;
}
.photo-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.25s ease; }
.photo-grid button:hover img { transform: scale(1.06); }
.photo-credit { font-size: 0.8rem; color: #6b7690; text-align: center; margin: 0.6rem 0 0; }

/* ---------- Presse-Galerie ---------- */
.presse-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.6rem;
  margin: 1.4rem 0;
}
.presse-strip button {
  padding: 0; border: 1px solid #eee; background: none; cursor: zoom-in; border-radius: 8px; overflow: hidden;
}
.presse-strip img { width: 100%; display: block; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; background: rgba(8,15,35,0.92);
  display: none; align-items: center; justify-content: center;
  z-index: 200; padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(90vw, 900px); max-height: 84vh; border-radius: 6px; }
.lightbox-nav {
  position: absolute; top: 0; bottom: 0; width: 15%;
  background: none; border: none; color: var(--white); font-size: 2.4rem; cursor: pointer;
}
.lightbox-prev { left: 0; }
.lightbox-next { right: 0; }
.lightbox-close {
  position: absolute; top: 1.2rem; right: 1.4rem;
  background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer;
}

/* ---------- Über: Akkordeon ---------- */
.accordion {
  border: 2px solid var(--navy);
  border-radius: var(--radius-card);
  margin: 1.4rem 0;
  overflow: hidden;
}
.accordion + .accordion { margin-top: 1rem; }
.accordion summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.4rem;
  font-weight: 700;
  font-size: var(--size-lead);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "▸";
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.accordion[open] summary::after { transform: rotate(90deg); }
.accordion[open] summary { border-bottom: 1px solid #dfe4ee; }
.accordion-content { padding: 1.2rem 1.4rem 1.4rem; }
.accordion-content p { margin: 0 0 1rem; }
.accordion-content p:last-child { margin-bottom: 0; }

/* ---------- Über: Portrait ---------- */
.ueber-intro {
  display: flex; gap: 2rem; align-items: flex-start; margin: 1.8rem 0;
}
.ueber-intro img { width: 260px; border-radius: var(--radius-card); flex-shrink: 0; }
@media (max-width: 680px) {
  .ueber-intro { flex-direction: column; align-items: center; text-align: center; }
  .ueber-intro img { width: 200px; }
}

.podcast-box {
  display: flex; gap: 1.2rem; align-items: center;
  background: #f6f4fb; border-radius: var(--radius-card); padding: 1rem 1.2rem; margin-top: 0.8rem;
}
.podcast-box img { width: 90px; height: 90px; object-fit: cover; border-radius: 12px; flex-shrink: 0; }

/* ---------- Kontakt / Impressum ---------- */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.6rem;
}
@media (max-width: 640px) { .kontakt-grid { grid-template-columns: 1fr; } }
.kontakt-grid h2 { margin-bottom: 0.6rem; }
.kontakt-grid p { margin: 0.2rem 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: var(--white);
  margin-top: 3rem;
  padding: 2.4rem 0;
}
.footer-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer-social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}
.footer-social-link svg { width: 20px; height: 20px; flex-shrink: 0; }
.footer-social-link:hover { color: var(--pink-light); text-decoration: underline; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  list-style: none;
  margin: 0; padding: 0;
}
.footer-links a { color: var(--white); text-decoration: none; font-weight: 600; }
.footer-links a:hover { color: var(--pink-light); text-decoration: underline; }
.footer-copy { font-size: 0.85rem; color: #c9d3ea; }

/* ---------- Utility ---------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
