/* ============================================================
   Lenny's Kebap · Pizza · Schnitzel — Perchtoldsdorf
   Dark Theme · Rot #E12E22 (aus Logo extrahiert) · Anton + Inter
   ============================================================ */

:root {
  --bg: #0A0A0A;
  --surface: #141414;
  --surface-2: #1C1C1C;
  --line: #2A2A2A;
  --red: #E12E22;
  --red-dark: #B92218;
  --text: #F5F5F4;
  --muted: #A6A29C;
  --display: 'Anton', 'Arial Narrow', sans-serif;
  --body: 'Inter', 'Segoe UI', Arial, sans-serif;
  --radius: 14px;
}

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

/* Offset exakt = Navbar-Höhe (68px), sonst blitzt die vorherige Sektion
   unter der fixen Navbar durch */
html { scroll-behavior: smooth; scroll-padding-top: 68px; }

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

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

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 22px; }
.container--narrow { max-width: 760px; }

.accent { color: var(--red); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--display);
  font-size: 1.02rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
  text-decoration: none !important;
}
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { border-color: #fff; transform: translateY(-2px); }
.btn--big { font-size: 1.15rem; padding: 15px 34px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(10,10,10,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 68px;
}
.nav__brand img { height: 30px; width: auto; }
.nav__menu {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav__menu a:not(.btn) {
  color: var(--text);
  font-weight: 500;
  font-size: .95rem;
  white-space: nowrap;
}
.nav__menu a:not(.btn):hover { color: var(--red); text-decoration: none; }
.nav__cta { font-size: .92rem; padding: 9px 20px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav__burger span {
  width: 26px; height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(8,8,8,.78), rgba(10,10,10,.92) 75%, var(--bg)),
    url('../img/food-03.jpg') center 35% / cover no-repeat;
}
.hero__inner {
  position: relative;
  padding-top: 110px;
  padding-bottom: 60px;
  width: 100%;
}
.hero__status {
  display: inline-block;
  font-size: .85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(20,20,20,.75);
  margin-bottom: 26px;
}
.hero__status.is-open { color: #7BE0A8; border-color: rgba(123,224,168,.35); }
.hero__status.is-closed { color: #F0A6A0; border-color: rgba(240,166,160,.35); }
.hero__logo {
  width: min(640px, 88%);
  height: auto;
  margin: 0 auto 26px;
}
.hero__claim {
  font-size: 1.25rem;
  color: #DDD9D3;
  max-width: 560px;
  margin: 0 auto 34px;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.hero__meta { font-size: .95rem; color: #CFCBC5; }
.hero__meta-muted { color: var(--muted); }

/* ---------- Trustbar ---------- */
.trustbar {
  background: var(--red);
  padding: 13px 0;
}
.trustbar__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 34px;
}
.trustbar span {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .95rem;
  color: #fff;
  white-space: nowrap;
}

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section--alt { background: var(--surface); }
.section__title {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.15;
  margin-bottom: 14px;
  text-align: center;
}
.section__lead {
  text-align: center;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 44px;
}
.form-hint { color: var(--muted); }

/* ---------- Deals ---------- */
.section--deals {
  background:
    linear-gradient(rgba(10,10,10,.92), rgba(10,10,10,.96)),
    url('../img/food-04.jpg') center / cover no-repeat fixed;
}
.deals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 380px));
  justify-content: center;
  gap: 28px;
}
.deal {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 30px 34px;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease;
}
.deal:hover { transform: translateY(-4px); border-color: var(--red); }
.deal__badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .8rem;
  padding: 4px 18px;
  border-radius: 999px;
}
.deal__name {
  font-family: var(--display);
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.deal__desc { color: var(--muted); margin: 8px 0 14px; }
.deal__price {
  font-family: var(--display);
  font-size: 2.4rem;
  color: var(--red);
  margin-bottom: 20px;
}

/* ---------- Speisekarte ---------- */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.menu-tab {
  font-family: var(--display);
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 22px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.menu-tab:hover { border-color: var(--red); }
.menu-tab.is-active { background: var(--red); border-color: var(--red); color: #fff; }

.menu-panel { max-width: 980px; margin: 0 auto; }
.menu-note {
  text-align: center;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 26px;
}
.menu-note--bottom { margin: 30px 0 0; font-style: normal; }

.menu-list {
  list-style: none;
  max-width: 640px;
  margin: 0 auto;
}
.menu-list--2col {
  max-width: none;
  columns: 2;
  column-gap: 60px;
}
.menu-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 11px 0;
  break-inside: avoid;
  border-bottom: 1px dashed rgba(255,255,255,.07);
}
.mi__name { font-weight: 600; }
.mi__name em {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: .84rem;
  color: var(--muted);
}
.mi__name small {
  display: block;
  font-size: .72rem;
  color: #6E6A64;
  letter-spacing: .04em;
}
.mi__dots { flex: 1; }
.mi__price {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--red);
  white-space: nowrap;
}
.mi--highlight .mi__name { color: var(--red); }

.allergene {
  margin-top: 44px;
  text-align: center;
  font-size: .82rem;
  color: var(--muted);
}

/* Kebap-Karten */
.kebap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.kebap-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.kebap-card h3 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.kebap-card h3 small {
  display: block;
  font-family: var(--body);
  font-weight: 400;
  font-size: .72rem;
  color: #6E6A64;
  text-transform: none;
  letter-spacing: .03em;
}
.kebap-card ul { list-style: none; margin-top: 12px; }
.kebap-card li {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(255,255,255,.07);
}
.kebap-card li:last-child { border-bottom: 0; }
.kebap-card b { font-family: var(--display); font-weight: 400; color: var(--red); }

/* ---------- Galerie ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  grid-auto-flow: dense;
  gap: 14px;
}
.gallery__item--wide { grid-column: span 2; }
.gallery__item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: zoom-in;
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery__item:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5,5,5,.94);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox__img {
  max-width: min(92vw, 900px);
  max-height: 86vh;
  width: auto;
  border-radius: 10px;
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(30,30,30,.8);
  color: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 46px; height: 46px;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__close { top: 20px; right: 20px; }
.lightbox__nav--prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 18px; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--red); }

/* ---------- Über uns ---------- */
.about {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
  margin-top: 44px;
}
.about__text p { margin-bottom: 16px; color: #D9D5CF; }
.about__facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 20px;
}
.about__facts li { font-weight: 600; color: var(--text); }
.about__img {
  border-radius: var(--radius);
  overflow: hidden;
}
.about__img img { width: 100%; height: 460px; object-fit: cover; }

/* ---------- Öffnungszeiten ---------- */
.hours {
  max-width: 460px;
  margin: 0 auto;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.hours__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.hours__table td {
  padding: 13px 22px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.hours__table tr:last-child td { border-bottom: 0; }
.hours__table td:last-child { text-align: right; font-weight: 600; }
.hours--closed td { color: var(--muted); }
.hours--closed td:last-child { color: var(--red); font-weight: 500; }
.hours__table tr.is-today td { background: rgba(255,255,255,.05); }
.hours__table tr.is-today td:first-child { font-weight: 700; }
.hours__today-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
  padding: 2px 10px;
  margin-left: 10px;
  vertical-align: 2px;
}
.hours--closed.is-today td:last-child { color: var(--red); }

/* ---------- Kontakt ---------- */
.contact {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: 40px;
  align-items: stretch;
}
.contact--below { margin-top: 64px; }
.contact__info {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
}
.contact__row {
  margin-bottom: 22px;
  color: #D9D5CF;
}
.contact__row:last-child { margin-bottom: 0; }
.contact__row strong {
  display: block;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 3px;
}
.contact__map {
  position: relative;
  min-height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--line);
}
.contact__map iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(.2) contrast(1.05);
}
.map-consent {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  padding: 30px;
  color: var(--muted);
}
.map-consent p { max-width: 420px; font-size: .9rem; }

/* ---------- Formular ---------- */
.form {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 34px;
}
.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
  margin-bottom: 18px;
}
/* min-width: 0 zwingend: Grid-Items schrumpfen sonst nicht unter die
   intrinsische Breite von date-/time-Inputs → Overflow auf Mobile */
.form__field { display: block; min-width: 0; }
.form__field span {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #D9D5CF;
}
.form__field input,
.form__field textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--body);
  font-size: 1rem;
  padding: 11px 14px;
  transition: border-color .2s ease;
  color-scheme: dark;
}
.form__field input:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form textarea { resize: vertical; }
/* iOS-Safari: date/time-Inputs rendern als inline-flex mit intrinsischer
   Breite und ignorieren width:100% — appearance:none erzwingt Block-Layout.
   min-height nötig, weil das Feld ohne Wert sonst kollabiert. */
.form__field input[type="date"],
.form__field input[type="time"] {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  min-height: 44px; /* gleiche Höhe wie die Text-Inputs */
  text-align: left;
}
.form__field input::-webkit-date-and-time-value {
  text-align: left;
  margin: 0;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0;
  pointer-events: none;
}
.h-captcha { margin: 22px 0 6px; }
.form__submit { width: 100%; margin-top: 14px; }
.form__status { margin-top: 16px; text-align: center; font-weight: 600; min-height: 1.4em; }
.form__status.is-ok { color: #7BE0A8; }
.form__status.is-error { color: #F0A6A0; }

/* ---------- Footer ---------- */
.footer {
  background: #060606;
  border-top: 1px solid var(--line);
  padding-top: 56px;
}
.footer__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 44px;
}
.footer__logo { height: 26px; width: auto; margin-bottom: 16px; }
.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: #D9D5CF;
  font-size: .93rem;
}
.footer__social:hover { color: var(--red); text-decoration: none; }
.footer__col p { color: var(--muted); font-size: .93rem; }
.footer__heading {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text) !important;
  margin-bottom: 10px;
}
.footer__col a { color: #D9D5CF; }
.footer__col a:hover { color: var(--red); }
.footer__credit {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  text-align: center;
}
.footer__credit p { font-size: .84rem; color: var(--muted); }
.footer__credit a { color: var(--muted); text-decoration: underline; }
.footer__credit a:hover { color: var(--red); }

/* ---------- Scroll-Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Responsive — Burger ab ≤980px (Vervo-Standard)
   ============================================================ */
@media (max-width: 980px) {
  .nav__burger { display: flex; }
  .nav__menu {
    position: fixed;
    top: 68px;
    right: 0;
    width: min(320px, 84vw);
    height: calc(100vh - 68px);
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 28px 26px;
    background: rgba(12,12,12,.98);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .nav__menu.is-open { transform: none; }
  .nav__menu a:not(.btn) {
    font-size: 1.1rem;
    padding: 10px 0;
    width: 100%;
  }
  .nav__cta { margin-top: 14px; }

  .menu-list--2col { columns: 1; }
  .about { grid-template-columns: 1fr; gap: 34px; }
  .about__img img { height: 340px; }
  .contact { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .hero { min-height: 86vh; }
  .hero__claim { font-size: 1.08rem; }
  .form { padding: 28px 20px; }
  .form__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 1; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .trustbar__inner { gap: 8px 20px; }
  .trustbar span { font-size: .82rem; }
}
