@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter/static/Inter_24pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter/static/Inter_24pt-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: "Fraunces";
  src: url("assets/fonts/Fraunces/static/Fraunces_72pt_Soft-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* =========================================================
   1. Variablen & Basis
   ========================================================= */
:root {
  --kalk: #F7F3EC;
  --kalk-dark: #EDE6DA;
  --karte: #E4DACB;
  --rot: #B9412F;
  --rot-hover: #9C3829;
  --orange: #FFA755;
  --braun: #4A3524;
  --braun-dark: #1C1917;
  --text: #2A2722;
  --leise: #6B615A;
  --green: rgb(185, 218, 185);
  --holz: url("assets/pics/holz.jpg");
  --rand: 1px solid var(--braun-dark);
  
  --display: "Fraunces", serif;
  --body: "Inter", sans-serif;

  --max: 1180px;
  --header-height: 64px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  background: var(--kalk);
  color: var(--text);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--rot);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.text-abstand {
  margin-top: 1rem;
}

.block--ohne-oben {
  padding-top: 0;
}

.margin-top-30 {
  margin-top: 30px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

/* =========================================================
   2. Typografie
   ========================================================= */
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.015em;
}

h1 {
  font-size: clamp(2.6rem, 4.4vw, 4.75rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
}

h3 {
  font-size: 1.3rem;
}

.eyebrow {
  color: var(--rot);
  font-family: var(--body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.lead {
  max-width: 62ch;
  color: var(--leise);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

/* =========================================================
   3. Navigation
   ========================================================= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--rot);
  box-shadow: 0 10px 10px -5px rgba(0, 0, 0, .137);
}

.topbar__inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.marke {
  color: var(--kalk);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -.01em;
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 1.6rem;
}

.nav a {
  padding: .25rem 0;
  border-bottom: 2px solid transparent;
  color: var(--kalk);
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
}

.nav a:hover {
  border-bottom-color: var(--orange);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 8px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle__icon {
  width: 28px;
  height: 28px;
}

/* =========================================================
   4. Hero
   ========================================================= */
.hero {
  position: relative;
  display: flex;
  padding: clamp(3rem, 1vw, 5rem) 0;
  align-items: flex-end;
  background-color: var(--braun);
  background-image: url("assets/pics/header.jpg");
  background-position: center 30%;
  background-size: cover;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(
    to right,
    rgba(27, 15, 1, .76) 0%,
    rgba(27, 15, 1, .08) 58%,
    rgba(27, 15, 1, 0) 100%
  );
}

.hero__bild--mobil {
  display: none;
}

.hero__text {
  max-width: min(46rem, 100%);
}

.hero__text h1 {
  max-width: 700px;
}

@media (max-width: 1432px) {
  .hero__text h1 {
    max-width: 500px;
  }
}

@media (max-width: 1023px) {
  .hero__text h1 {
    max-width: 400px;
  }

  .hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(
    to right,
    rgba(27, 15, 1, .76) 0%,
    rgba(27, 15, 1, .29) 58%,
    rgba(27, 15, 1, 0) 100%
  );
}
}

@media (max-width: 760px) {
  .hero__text h1 {
    max-width: none;
  }
}

.hero .eyebrow {
  color: var(--kalk);
}

.hero h1 {
  margin: .85rem 0 1.25rem;
  color: var(--kalk);
  text-shadow: 0 2px 24px rgba(0, 0, 0, .4);
}

.hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero__amp {
  color: var(--kalk);
}

.hero .lead {
  max-width: 52ch;
  color: var(--kalk);
}

/* =========================================================
   5. Buttons
   ========================================================= */
.buttonreihe {
  display: flex;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  gap: .75rem;
}

.button {
  display: inline-block;
  padding: .8rem 1.5rem;
  border: var(--rand);
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
}

.button--voll {
  border-color: var(--rot);
  background: var(--rot);
  color: var(--kalk);
}

.button--voll:hover {
  border-color: var(--rot-hover);
  background: var(--rot-hover);
}

.button--leer {
  background: transparent;
  color: var(--rot-hover);
}

.button--leer:hover {
  background: var(--rot-hover);
  color: var(--kalk);
}

.hero .button--leer {
  border-color: var(--kalk);
  color: var(--kalk);
}

.hero .button--voll:hover,
.hero .button--leer:hover {
  border-color: var(--kalk-dark);
  background: var(--rot-hover);
  color: var(--kalk);
}

/* =========================================================
   6. Abschnitte & Layout
   ========================================================= */
.block {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.zweispalt {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
}

div.zweispalt:nth-child(2) > div:nth-child(2) {
  background: var(--rot);
}

.block--dunkel {
  position: relative;
  background-color: var(--braun);
  background-image:
    var(--holz),
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, .34) 0,
      rgba(0, 0, 0, .34) 2px,
      transparent 2px,
      transparent 106px
    ),
    repeating-linear-gradient(
      88deg,
      rgba(126, 84, 44, .22) 0,
      rgba(126, 84, 44, .22) 7px,
      transparent 7px,
      transparent 47px
    ),
    linear-gradient(180deg, #4A3524 0%, #2E2116 100%);
  background-position: center;
  background-size: 1400px auto, auto, auto, auto;
  color: var(--kalk-dark);
  isolation: isolate;
}

.block--dunkel::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgba(20, 15, 10, .62);
}

.block--dunkel h2 {
  color: var(--kalk);
}

.block--dunkel .eyebrow {
  color: var(--orange);
}

.block--dunkel .lead {
  color: var(--kalk-dark);
}

/* Dekobalken */
.streben {
  height: 64px;
  background-color: var(--rot);
  background-image: url("assets/pics/holz-rot.jpg");
  background-position: bottom;
}

.streben--holz {
  background-color: var(--braun);
}

/* =========================================================
   7. Karten
   ========================================================= */
.karten {
  display: grid;
  margin-top: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.karte {
  padding: 1.75rem;
  background: var(--kalk-dark);
  transition: background .2s ease, transform .2s ease;
}

.karte:hover {
  background: var(--karte);
  transform: translateY(-2px);
}

.karte__icon {
  display: flex;
  width: 46px;
  height: 46px;
  margin-bottom: 1.1rem;
  align-items: center;
  justify-content: center;
  background: var(--braun);
  color: var(--kalk);
}

.karte__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.karte h3 {
  margin-bottom: .5rem;
}

.karte p {
  color: var(--leise);
  font-size: .95rem;
}

/* =========================================================
   8. Angebot
   ========================================================= */
#angebot {
  background-image: url("assets/pics/angebot-background.jpg");
  background-position: center center;
  background-size: cover;
}

.angebot__bild--mobil {
  display: none;
}

.angebot-text {
  padding: 20px;
  align-self: start;
  background: var(--rot);
  color: var(--kalk-dark);
}

#angebot .lead,
#angebot .eyebrow {
  color: var(--kalk-dark);
}

.karte-liste {
  display: grid;
  margin: 0px 20px;
  gap: .6rem;
  list-style: none;
}

.karte-liste li {
  display: grid;
  padding: 1rem .8rem;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  background: var(--kalk-dark);
}

.karte-liste svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--rot);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.karte-liste strong {
  font-family: var(--body);
  font-size: 1.05rem;
  font-weight: 600;
}

.karte-liste em {
  color: var(--leise);
  font-size: .9rem;
  font-style: normal;
  text-align: right;
}

.background-red {
  padding: 20px;
  background: var(--rot);
  color: var(--kalk-dark);
}

.angebot-hinweis {
  margin-top: 0px;
  font-size: .95rem;
}

/* =========================================================
   9. Kultur & Termine
   ========================================================= */
.termine {
  display: grid;
  gap: 1rem;
}

.termin {
  display: grid;
  padding: 1.35rem 1.5rem;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 1.5rem;
  border-left: 3px solid var(--orange);
  background: rgba(23, 21, 19, .92);
  transition: background .2s ease;
}

.termin:hover {
  background: rgba(35, 31, 28, .94);
}

.termin__datum {
  display: flex;
  padding: .6rem .3rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--braun-dark);
  font-family: var(--display);
  line-height: 1.1;
}

.termin__tag {
  color: var(--braun-dark);
  font-size: 1.65rem;
  font-weight: 700;
}

.termin__monat {
  margin-top: .15rem;
  color: var(--braun-dark);
  font-family: var(--body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.termin h3 {
  margin-bottom: .3rem;
  color: var(--kalk);
}

.termin div p {
  color: var(--kalk-dark);
  font-size: .95rem;
}

.kultur-hinweis {
  margin-top: 1.75rem;
  font-size: .95rem;
}

/* =========================================================
   10. Galerie
   ========================================================= */
.galerie-wrap {
  padding-top: 0px;
}

.galerie-title {
  margin-bottom: 2rem;
}

.galerie {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.galerie img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--kalk-dark);
}

/* =========================================================
   11. FAQ
   ========================================================= */
.faq {
  display: grid;
  margin-top: 2.5rem;
  gap: .6rem;
  color: var(--kalk);
}

.faq details,
.faq details[open] {
  background: var(--rot);
}

.faq summary {
  display: flex;
  padding: 1.15rem 1.35rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--body);
  font-size: 1.1rem;
  font-weight: 600;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--kalk);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "–";
}

.faq p {
  max-width: 70ch;
  padding: 0 1.35rem 1.35rem;
  color: var(--kalk);
}

/* =========================================================
   12. Kontakt
   ========================================================= */
.kontakt-section {
  background: var(--kalk-dark);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: clamp(2rem, 5vw, 4rem);
}

.kontakt-grid h2 {
  line-height: 1.25;
}

.daten dt {
  margin-top: 1.5rem;
  color: var(--leise);
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.daten dd {
  margin-top: .25rem;
  font-size: 1.05rem;
}

.karte-rahmen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--karte);
}

.osm-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.karte-einwilligung {
  display: flex;
  width: 100%;
  height: 100%;
  padding: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  justify-content: center;
  background: var(--green);
}

.karte-einwilligung__innen {
  max-width: 32rem;
}

.karte-einwilligung h3 {
  margin-bottom: .75rem;
}

.karte-einwilligung p {
  margin-bottom: 1.25rem;
  color: var(--leise);
  font-size: .95rem;
}

.karte-einwilligung__hinweis {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: .85rem;
}

.karte-widerruf {
  position: absolute;
  top: .75rem;
  left: .75rem;
  z-index: 5;

  padding: .5rem .75rem;
  border: 0;

  background: rgba(247, 243, 236, .95);
  color: var(--text);

  font-family: var(--body);
  font-size: .75rem;

  cursor: pointer;
}

.karte-widerruf:hover {
  background: var(--kalk);
}

/* hidden muss immer gewinnen */
[hidden] {
  display: none;
}

/* =========================================================
   13. Footer
   ========================================================= */
footer {
  position: relative;
  padding: 3rem 0 2.5rem;
  background-color: var(--braun);
  background-image:
    var(--holz),
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, .34) 0,
      rgba(0, 0, 0, .34) 2px,
      transparent 2px,
      transparent 106px
    ),
    repeating-linear-gradient(
      88deg,
      rgba(126, 84, 44, .22) 0,
      rgba(126, 84, 44, .22) 7px,
      transparent 7px,
      transparent 47px
    ),
    linear-gradient(180deg, #4A3524 0%, #2E2116 100%);
  background-position: center bottom;
  background-size: 1400px auto, auto, auto, auto;
  color: var(--kalk);
  font-size: .875rem;
  isolation: isolate;
}

footer::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgba(20, 15, 10, .72);
}

footer a {
  color: var(--kalk);
}

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

.footer-grid h4 {
  margin-bottom: .6rem;
  color: var(--kalk);
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 600;
}

.footer-grid p,
.footer-grid a {
  display: block;
  line-height: 1.8;
}

.footer-unten {
  display: flex;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--braun);
}

/* =========================================================
   14. Responsive
   ========================================================= */
@media (max-width: 860px) {
  .zweispalt,
  .kontakt-grid {
    grid-template-columns: 1fr;
  }

  /* Angebot: Bild nicht mehr als Hintergrund, sondern separat */
  #angebot {
    padding-top: 0;
    background-image: none;
  }

  .angebot__bild--mobil {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 2;
    object-fit: cover;
    object-position: center;
  }

  .angebot__spacer {
    display: none;
  }
}

@media (max-width: 760px) {
  /* Burgernavigation */
  .menu-toggle {
    display: flex;
    flex: 0 0 auto;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: .5rem clamp(1.25rem, 4vw, 2.5rem) 1rem;
    flex-direction: column;
    gap: 0;
    background: var(--rot);
    box-shadow: 0 12px 20px rgba(0, 0, 0, .18);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: .8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  /* Hero: Foto oben, Text darunter */
  .hero {
    display: block;
    min-height: 0;
    padding: 0;
    background-image: none;
  }

  .hero::after {
    display: none;
  }

  .hero__bild--mobil {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 2;
    object-fit: cover;
    object-position: right 20%;
  }

  .hero .wrap {
    padding-top: 2.25rem;
    padding-bottom: 2.75rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 10vw, 3.4rem);
    text-shadow: none;
  }

  .streben {
    height: 42px;
    background-size: auto 100%;
  }
}

@media (max-width: 600px) {
  .termin {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: .9rem;
  }

  .termin__datum {
    padding: .4rem .9rem;
    flex-direction: row;
    gap: .5rem;
  }

  .termin__tag {
    font-size: 1.2rem;
  }
}

@media (max-width: 520px) {
  .karte-liste li {
    grid-template-columns: 40px 1fr;
    column-gap: .5rem;
    row-gap: 0;
  }

  .karte-liste em {
    grid-column: 2;
    text-align: left;
  }

  .buttonreihe {
    flex-direction: column;
  }

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

#fragen {
padding-top: 20px;
}

.kein-umbruch {
  white-space: nowrap;
}