/* ============ Base ============ */
:root{
/*Dunkel*/	
  /*--bg: #0f0f12;*/
    --bg: #1a1a1e;   /* statt fast schwarz, eher warmes Anthrazit */
  --surface: #15161b;
  --surface2: #1b1c22;
  --line: rgba(244,244,246,0.12);
  --text: #f4f4f6;
  --muted: rgba(244,244,246,0.72);

  
  

  /* aus dem Logo abgeleitet */
  --brand: #600010;
  --brand2: #8a0f26;

  --radius: 18px;
  --shadow: 0 18px 40px rgba(0,0,0,0.35);
  --container: 1100px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  line-height: 1.55;

	background: radial-gradient(1200px 700px at 20% -10%, rgba(96,0,16,0.35), transparent 60%),
              radial-gradient(900px 600px at 90% 10%, rgba(138,15,38,0.20), transparent 60%),
              var(--bg);
  color: var(--text);
  


}

/* Leinen-Overlay, aber super dezent */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  background-image: url("assets/img/leinen.jpg");
  background-repeat: repeat;
  background-size: 1200px 1200px;   /* sehr groß ziehen */
  opacity: 0.25; 																													/*Einstellung für Sichtbarkeit*/
  mix-blend-mode: overlay;
  filter: blur(0.3px);              /* minimal weichzeichnen */
  pointer-events: none;
  z-index: 0;
}

body::after{
  content:"";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1200px 800px at 20% 10%, rgba(255,255,255,0.05), transparent 60%),
    radial-gradient(900px 600px at 80% 90%, rgba(0,0,0,0.12), transparent 65%);
  pointer-events: none;
  z-index: 0;
}


/* Content über das Overlay heben */
.site-header, main, footer{
  position: relative;
  z-index: 1;
}

.card{
  background: rgba(15,15,18,0.9);        /* deckt das Leinen sauber ab */
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  backdrop-filter: blur(10px);           /* optional, für „Glass“-Look */
}


img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; text-decoration: none; }

.container{
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--text);
  color: #000;
  padding: 10px 12px;
  border-radius: 10px;
}
.skip-link:focus{ left: 10px; z-index: 9999; }

.section{
  padding: 72px 0;
}
.section.accent{
  background: linear-gradient(180deg, rgba(96,0,16,0.22), transparent 70%);
}

.section-head{
  margin-bottom: 18px;
}
.section-head h2{
  margin: 0 0 6px;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  letter-spacing: 0.2px;
}
.section-head p{
  margin: 0;
  color: var(--muted);
}

.grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.small{ font-size: 0.92rem; }
.muted{ color: var(--muted); }

/* ============ Header / Nav ============ */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(15,15,18,0.55);
  border-bottom: 1px solid var(--line);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}
.brand-logo{
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.35));
}
.brand-text{
  display: grid;
  line-height: 1.1;
}
.brand-name{
  font-weight: 800;
  letter-spacing: 0.2px;
}
.brand-sub{
  font-size: 0.92rem;
  color: var(--muted);
}

.nav{
  display: flex;
  gap: 14px;
  align-items: center;
}
.nav a{
  font-size: 0.95rem;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
}
.nav a:hover{
  color: var(--text);
  border-color: var(--line);
  background: rgba(255,255,255,0.04);
}

/* Mobile menu: checkbox hack */
.nav-toggle{
  display: none;
}

.nav-toggle-label{
  display: none;              /* nur auf Mobile sichtbar */
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Die 3 Balken */
.nav-toggle-label span{
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}


/* ============ DOT NAV ============ */

.dot-nav{
  position: fixed;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  display: none;              /* standardmäßig aus */
  gap: 10px;
  padding: 10px 8px;
  border-radius: 999px;
  background: rgba(15,15,18,0.45);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
}

.dot-nav a{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(244,244,246,0.35);
  border: 1px solid rgba(244,244,246,0.20);
  display: block;
  transition: transform 0.15s ease, background 0.15s ease;
}

.dot-nav a.active{
  background: rgba(96,0,16,0.95);
  border-color: rgba(96,0,16,0.9);
  transform: scale(1.25);
}

.dot-nav a:focus-visible{
  outline: 2px solid rgba(244,244,246,0.6);
  outline-offset: 3px;
}

/* nur auf Mobile anzeigen */
@media (max-width: 760px){
  .dot-nav{ display: grid; }
}




/* ============ Hero ============ */
.hero{
  padding: 80px 0 52px;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: center;
}
.hero-text h1{
  margin: 10px 0 6px;
  font-size: clamp(2.0rem, 4.5vw, 3.2rem);
  line-height: 1.05;
}
.lead{
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

.pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  font-size: 0.92rem;
  color: var(--muted);
}
.pill.light{
  background: rgba(255,255,255,0.10);
  color: var(--text);
}

.cta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-weight: 650;
}
.btn:hover{
  background: rgba(255,255,255,0.07);
}
.btn.primary{
  border-color: rgba(96,0,16,0.55);
  background: linear-gradient(180deg, rgba(96,0,16,0.95), rgba(138,15,38,0.82));
  box-shadow: 0 20px 50px rgba(96,0,16,0.35);
}

#oeffnungszeiten .info-box .btn {
    margin-top: 25px
}

.hero-note{
  margin-top: 14px;
  color: var(--muted);
}
.hero-note strong{ color: var(--text); }

.hero-media{
  position: relative;
  min-height: 260px;
}
.hero-media img{
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  object-fit: cover;
  min-height: 260px;
}
.hero-media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.55));
  border-radius: var(--radius);
  z-index: 1;
  pointer-events: none;
}

.hero-media-fallback{
  position: absolute;
  inset: 0;
  display: grid;
  text-shadow: 0 6px 18px rgba(0,0,0,0.85);
  place-items: center;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(96,0,16,0.22), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
  z-index: 2;
}

.hero-media-fallback .badge{
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 16px 18px;
  border-radius: 16px;
}

.badge{
  text-align: center;
  padding: 18px;
}
.badge-title{
  display: block;
  font-weight: 800;
  font-size: 1.2rem;
}
.badge-sub{
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

/* ============ Öffnungszeiten ============ */
.hours .row{
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.14);
}
.hours .row:last-child{ border-bottom: none; }

.info-box{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;   /* vertikal mittig */
  align-items: center;       /* horizontal mittig */
  text-align: center;
  gap: 12px;
}

.info-box h3{
  margin: 0;
}

.info-box p{
  margin: 0;
  color: var(--muted);
  max-width: 32ch; /* damit der Text nicht zu breit wird */
}
.card.grid-2{
  align-items: stretch;
}


.extra-info{
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--muted);
  font-size: 0.95rem;
}

.cash-only{
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(96, 0, 16, 0.25);
  border: 1px solid rgba(96, 0, 16, 0.5);
  color: #f5dede;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: none;
}

.hours .row.today{
  background: rgba(96,0,16,0.25);
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 600;
}

.hours .row.today span:last-child{
  color: #fff;
}

.hours .row.today::after{
  content: "Heute";
  margin-left: 10px;
  font-size: 0.75rem;
  background: rgba(96,0,16,0.8);
  color: white;
  padding: 3px 8px;
  border-radius: 999px;
}



/* ============ Promo ============ */
.promo-modern{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: center;
}

.price-card{
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  margin: 12px 0 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  width: fit-content;
}

.price-big{
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.price-small{
  color: var(--muted);
  font-weight: 600;
}

.chips{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.chip{
  font-size: 0.92rem;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
}

.filter-chip{
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 650;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}

.filter-chip:hover{
  color: var(--text);
  background: rgba(255,255,255,0.07);
}

/* aktiv = rot */
.filter-chip.is-active{
  color: #fff;
  border-color: rgba(96,0,16,0.65);
  background: linear-gradient(180deg, rgba(96,0,16,0.95), rgba(138,15,38,0.82));
  box-shadow: 0 14px 30px rgba(96,0,16,0.28);
}


.promo-right{
  display: grid;
  gap: 10px;
  justify-items: end;
}

.promo-badge{
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.14);
  background: radial-gradient(600px 200px at 20% 20%, rgba(96,0,16,0.40), rgba(255,255,255,0.05));
  font-size: 1.7rem;
}

.promo-footnote{
  margin-top: 12px;
  font-size: 0.9rem;
  color: rgba(244,244,246,0.62);
}

@media (max-width: 940px){
  .promo-modern{
    grid-template-columns: 1fr;
  }
  .promo-right{
    justify-items: start;
    grid-auto-flow: column;
    justify-content: start;
  }
}

.price-card.highlight{
  background: linear-gradient(180deg, rgba(96,0,16,0.9), rgba(138,15,38,0.85));
  border: none;
  color: white;
  box-shadow: 0 14px 40px rgba(96,0,16,0.45);
  align-items: center;
  text-align: center;
}

/* ============ Über uns ============ */

.about{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  align-items: start;
}

.about-media{
  padding: 0;
  overflow: hidden;
}

/* Wrapper für Bild + Zitat */
.about-image-wrapper{
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

/* Bild selbst */
.about-image-wrapper img{
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

/* Zitat über dem Bild */
.about-quote{
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.8));
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.4;
  font-style: italic;
  text-shadow: 0 4px 12px rgba(0,0,0,0.7);
}

.about-quote span{
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.4px;
  opacity: 0.9;
}


.about-text h3{
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.about-text p{
  margin: 0 0 12px;
  color: var(--muted);
}

.about-highlights{
  display: grid;
  gap: 10px;
  margin: 14px 0 14px;
}

.highlight-item{
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--text);
  font-weight: 600;
}

.about-signature{
  margin-top: 14px;
  color: var(--text);
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 12px;
}

/* ============ Bullets ============ */
.bullets .bullet{
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.bullets .bullet:last-child{ border-bottom: none; }
.bullets strong{ display: block; margin-bottom: 4px; }
.bullets span{ color: var(--muted); }

/* ============ Gallery ============ */
.gallery{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
  transition: transform 180ms ease, opacity 180ms ease;
  cursor: pointer;
}
.gallery img:hover{
  transform: translateY(-2px) scale(1.02);
  opacity: 0.95;
}



/* ============ Feiern Card ============ */


.feiern-card{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: center;
}

.feiern-actions{
  display: grid;
  gap: 10px;
  justify-items: end;
}

@media (max-width: 900px){
  .feiern-card{
    grid-template-columns: 1fr;
  }
  .feiern-actions{
    justify-items: start;
  }
}


/* ============ Menu Card ============ */
.menu-card{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.menu-card h3{ margin: 0 0 6px; }
.menu-card p{ margin: 0; color: var(--muted); }
.menu-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ============ Contact ============ */
.contact-card .contact-row{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.contact-card .contact-row:last-child{ border-bottom: none; }
.label{ color: var(--muted); }


.social-links{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.social-links a{
  font-size: 0.9rem;
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  transition: 0.15s ease;
}

.social-links a:hover{
  color: var(--text);
  background: rgba(255,255,255,0.08);
}


/* ============ Speisekarte ============ */
.menu-page .container{ width:min(980px, calc(100% - 2rem)); margin:0 auto; }



.menu-header{
  position: sticky;
  top: 0;
  z-index: 80;
  padding: 14px 0 12px;
  background: rgba(15,15,18,0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.menu-head-grid{
  display: grid;
  gap: 14px;
}

/* obere Zeile: Brand links, Back rechts */
.menu-topbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.menu-topbar .brand{
  min-width: 0;
}
/*
.menu-topbar{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}
*/

.back{
  white-space: nowrap;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}
.back:hover{
  color: var(--text);
  background: rgba(255,255,255,0.07);
}

/* Titelblock */
.menu-title h1{
  margin: 0 0 6px;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.05;
}
.menu-title p{
  margin: 0 0 12px;
}






.menu-title-center{
  text-align: center;
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 0.3px;
}

.menu-header .back{
  color: var(--muted);
  font-size: 0.9rem;
  white-space: nowrap;
}

.menu-header .back:hover{
  color: var(--text);
}


.menu-header h1{ margin: 10px 0 6px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.menu-header .back{ color: var(--muted); display:inline-block; }

/*
.menu-search{
  margin: 16px 0 18px;   
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
*/
/* Suche etwas "wertiger" */
.menu-search{
  width: 100%;
    margin: 16px 0 18px;   
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}


.menu-tabs{
  position: sticky;
  top: 86px;                 /* ggf. anpassen (siehe Tipp unten) */
  z-index: 70;
  background: rgba(15,15,18,0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.menu-page .menu-section{
  scroll-margin-top: 250px;
}

.menu-list{
  padding-top: 10px;
}

.tabs-scroll{
  display:flex;
  gap: 10px;
  overflow:auto;
  padding: 10px 0;
  scroll-snap-type: x mandatory;
}

.menu-tabs a{
  scroll-snap-align: start;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
}
.menu-tabs a:hover{ color: var(--text); }

.menu-section{ padding: 22px 0; }
.menu-section h2{ margin: 0 0 12px; }

.menu-item{
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: rgba(15,15,18,0.90);
  box-shadow: 0 12px 28px rgba(0,0,0,0.20);
  margin-bottom: 12px;
}
.mi-head{ display:flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.mi-head h3{ margin:0; font-size: 1.05rem; }
.price{ font-weight: 900; }
.desc{ margin: 8px 0 0; color: var(--muted); }

.tags{ display:flex; gap:8px; flex-wrap:wrap; margin-top: 10px; }
.tag{
  font-size: .85rem;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
}

.section-row{ display:flex; align-items:center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }






/* ============ Filter Alergene ============ */


/* Suche + Filter-Button in einer Zeile */
.menu-search-row{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

/* Button rechts neben Suche */
.menu-page .filter-open{
  padding: 12px 14px;
  border-radius: 14px;
  white-space: nowrap;
}

/* Aufklapp-Panel */
.menu-page .filter-panel{
  margin-top: 10px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(15,15,18,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

/* Wenn Panel drin ist, soll menu-filters NICHT extra margin nach unten geben */
.menu-page .filter-panel .menu-filters{
  margin: 0;
}



.menu-filters{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 0;
}

.filter-chip{
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 650;
}

.filter-chip.active{
  background: rgba(96,0,16,0.85);
  border-color: rgba(96,0,16,0.85);
  color: white;
}

.filter-more summary{
  list-style: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-weight: 650;
}
.filter-more[open] summary{
  color: var(--text);
  background: rgba(255,255,255,0.07);
}
/*
.filter-grid{
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 8px 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(15,15,18,0.7);
}*/

.filter-grid label{ color: var(--muted); }
.filter-grid input{ transform: translateY(1px); }

.filter-more{
  position: relative;
}

.filter-more summary{
  list-style: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-weight: 650;
}

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

.filter-more[open] summary{
  color: var(--text);
  background: rgba(255,255,255,0.07);
}

.filter-grid{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 999;
  min-width: 260px;

  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 8px 12px;

  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(15,15,18,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.filter-grid label{
  color: var(--muted);
  font-size: 0.95rem;
}


/* ============ Impressum ============ */

.legal-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.legal-grid h3{
  margin-top: 0;
  margin-bottom: 10px;
}

.legal-grid p{
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.6;
}






/* ============ Footer ============ */
.site-footer{
  border-top: 1px solid var(--line);
  padding: 22px 0;
  background: rgba(0,0,0,0.2);
}

.footer-inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.footer-left{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-right{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-social{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-social a{
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.15s ease;
}

.footer-social a:hover{
  color: var(--text);
}

.footer-right a:hover,
.footer-inner a:hover{
  color: var(--text);
}

/* ============ Float Button ============ */

#toTop{
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(96,0,16,0.9);
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(96,0,16,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 999;
}

#toTop.show{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#toTop:hover{
  background: rgba(120,0,22,1);
}


/* ---------- Nav Scroll ---------- */
.nav a{
  position: relative;
}

.nav a.active{
  color: var(--text);
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
}

.nav a.active::after{
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, rgba(96,0,16,0.9), rgba(140,20,40,0.9));
  border-radius: 2px;
}





/* ============ Responsive ============ */
@media (max-width: 940px){
  .hero-grid{ grid-template-columns: 1fr; }
  .promo{ flex-direction: column; align-items: flex-start; }
  .promo-side{ justify-items: start; }
  .menu-card{ flex-direction: column; align-items: flex-start; }
  .grid-2{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  
    .about{
    grid-template-columns: 1fr;
  }
  .about-media img{
    max-height: 420px;
  }
}

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

@media (max-width: 760px){

  .nav-toggle-label{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }

  .nav{
    position: fixed;
    top: 70px;
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 8px;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(15,15,18,0.92);
    backdrop-filter: blur(14px);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: 180ms ease;
  }

  .nav a{
    padding: 10px 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
  }

  .nav-toggle:checked ~ .nav{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
    .footer-inner{
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right{
    margin-top: 8px;
  }
    .about-quote{
    font-size: 0.85rem;
    padding: 10px 12px;
  }
  
  .menu-filters{ justify-content: flex-start; }
  .filter-more{ width: 100%; }

  .filter-more summary{
    width: 100%;
    text-align: center;
  }

  .filter-grid{
    position: static;       /* kein Dropdown mehr */
    transform: none;
    left: auto;
    top: auto;

    width: 100%;
    min-width: 0;
    margin-top: 10px;

    grid-template-columns: 1fr 1fr;  /* oder 1fr für ganz schmal */
  }
  
}

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


/* Mobile: Back-Link unter den Brand, wenn eng */
@media (max-width: 520px){
  .menu-topbar{
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  /* Brand kompakter machen */
  .menu-topbar .brand-text{
    display: none; /* damit es nicht umbricht */
  }
  .menu-topbar .brand-logo{
    width: 40px;
    height: 40px;
  }

  /* Titel darf kleiner werden, aber bleibt in der Mitte */
  .menu-title-center{
    flex: 1;
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.05;
  }

  /* Button bleibt rechts, kein Umbruch */
  .menu-topbar .back{
    padding: 8px 10px;
    font-size: 0.9rem;
    white-space: nowrap;
  }
}

}

/* ============ No Script ============ */
.noscript{
  margin: 12px auto;
  max-width: 1100px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(96,0,16,0.18);
  border: 1px solid rgba(96,0,16,0.45);
  color: var(--text);
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* ============ No Results ============ */
.no-results{
  margin: 40px auto;
  max-width: 500px;
  text-align: center;
  padding: 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.no-results h3{
  margin-top: 0;
}

.no-results p{
  color: var(--muted);
}
