/* ============================
   FONTS
============================ */

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

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

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

/* ============================
   BASE
============================ */

:root {
  --bg: #050505;
  --surface: #111111;
  --surface-soft: #181818;
  --surface-red: #190202;
  --text: #f7f7f7;
  --text-soft: #cfcfcf;
  --muted: #8f8f8f;
  --line: rgba(255, 255, 255, 0.13);
  --primary: #d00000;
  --primary-dark: #8f0000;
  --accent: #ffffff;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at 85% 8%, rgba(208, 0, 0, 0.20), transparent 34%),
    radial-gradient(circle at 10% 40%, rgba(208, 0, 0, 0.10), transparent 30%),
    linear-gradient(180deg, #050505 0%, #0b0b0b 45%, #050505 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.section {
  padding: 4.7rem 0;
}

.alt-section {
  background:
    radial-gradient(circle at top right, rgba(208, 0, 0, 0.12), transparent 35%),
    rgba(255, 255, 255, 0.025);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 0.7rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(208, 0, 0, 0.16);
  border: 1px solid rgba(208, 0, 0, 0.45);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.3rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  margin-bottom: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  font-weight: 800;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.2;
  margin-bottom: 0.45rem;
  color: #ffffff;
}

.lead {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 42rem;
}

.lead.narrow {
  max-width: 38rem;
}

/* ============================
   HEADER
============================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(208, 0, 0, 0.38);
}

.header-inner,
.footer-inner,
.menu-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 68px;
  width: auto;
  object-fit: contain;
}

.main-nav,
.footer-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.main-nav a,
.footer-nav a,
.text-link {
  color: var(--text-soft);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.65rem 0.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
}

.main-nav a.is-active,
.main-nav a:hover,
.footer-nav a:hover,
.text-link:hover {
  color: #ffffff;
  background: rgba(208, 0, 0, 0.15);
  border-color: rgba(208, 0, 0, 0.42);
}

/* ============================
   BUTTONS
============================ */

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.button-row.center {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 14px 32px rgba(208, 0, 0, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-secondary:hover {
  border-color: rgba(208, 0, 0, 0.65);
  background: rgba(208, 0, 0, 0.14);
}

.btn-small {
  min-height: 2.6rem;
  padding: 0.65rem 1rem;
}

/* ============================
   HERO
============================ */

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 30%, rgba(208, 0, 0, 0.20), transparent 34%),
    linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.18));
  pointer-events: none;
}

.hero-grid,
.about-grid,
.location-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
}

.hero-copy {
  padding: 1rem 0;
}

.hero-info-cards,
.quick-grid,
.category-preview-grid,
.featured-grid {
  display: grid;
  gap: 1rem;
}

.hero-info-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.hero-image,
.about-image,
.location-image,
.food-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  min-height: 30rem;
  max-height: 36rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.food-image-logo {
  object-fit: contain;
  background: #070707;
  padding: 2rem;
}

/* ============================
   OPENING TIMES
============================ */

.opening-times {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.4rem;
}

.opening-times div {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

.opening-times span {
  color: var(--text-soft);
  font-weight: 600;
}

.opening-times strong {
  color: #fff;
  font-weight: 700;
}

/* ============================
   CARDS
============================ */

.mini-card,
.quick-card,
.category-card,
.food-card,
.location-card,
.notice-box,
.cta-box,
.menu-item {
  background: linear-gradient(180deg, #151515, #101010);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.mini-card,
.quick-card,
.category-card,
.location-card,
.notice-box,
.cta-box {
  padding: 1.2rem;
}

.mini-label,
.quick-title {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.quick-grid,
.category-preview-grid,
.featured-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quick-card,
.category-card {
  transition: transform 0.2s ease, border 0.2s ease;
}

.quick-card:hover,
.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(208, 0, 0, 0.68);
}

.icon-badge {
  width: 3rem;
  height: 3rem;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(208, 0, 0, 0.16);
  border: 1px solid rgba(208, 0, 0, 0.35);
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.section-head {
  max-width: 42rem;
  margin-bottom: 1.8rem;
}

.section-cta {
  margin-top: 1.5rem;
}

.food-card {
  overflow: hidden;
}

.food-image {
  aspect-ratio: 16 / 11;
}

.food-card-body {
  padding: 1.2rem;
}

.food-card-body strong,
.mini-card strong {
  color: #ffffff;
}

/* ============================
   DELIVERY
============================ */

.delivery-preview {
  background:
    radial-gradient(circle at top right, rgba(208, 0, 0, 0.18), transparent 35%),
    #060606;
}

.delivery-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  background: linear-gradient(135deg, #151515, #0b0b0b);
  border: 1px solid rgba(208, 0, 0, 0.38);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 4vw, 2.4rem);
  box-shadow: var(--shadow);
}

.delivery-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(90px, 1fr));
  gap: 0.8rem;
}

.delivery-facts article {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(208, 0, 0, 0.12);
  border: 1px solid rgba(208, 0, 0, 0.35);
  text-align: center;
}

.delivery-facts strong {
  display: block;
  color: #ffffff;
  font-size: 1.5rem;
}

.delivery-facts span {
  color: var(--text-soft);
  font-size: 0.9rem;
}

/* ============================
   ABOUT / LOCATION
============================ */

.about-grid {
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
}

.about-image {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.location-grid {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: stretch;
}

.map-card {
  padding: 0;
  overflow: hidden;
}

.location-image {
  min-height: 17rem;
  max-height: 23rem;
  border-bottom: 1px solid var(--line);
}

.map-copy {
  padding: 1.2rem;
}

/* ============================
   MENU PAGE
============================ */

.menu-tabs-wrap {
  position: sticky;
  top: 86px;
  z-index: 35;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(208, 0, 0, 0.3);
}

.menu-tabs {
  width: min(calc(100% - 1rem), var(--container));
  margin: 0 auto;
  display: flex;
  gap: 0.65rem;
  padding: 0.8rem 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.menu-tabs::-webkit-scrollbar {
  display: none;
}

.menu-tab {
  flex: 0 0 auto;
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  font-weight: 800;
  color: #ffffff;
}

.menu-tab:hover {
  background: rgba(208, 0, 0, 0.16);
  border-color: rgba(208, 0, 0, 0.55);
}

.menu-page .section {
  padding: 3.75rem 0;
}

.menu-intro-section {
  padding-top: 2.7rem;
}

.menu-category-head {
  max-width: 42rem;
  margin-bottom: 1.5rem;
}

.menu-list-grid {
  display: grid;
  gap: 0.8rem;
}

.menu-item {
  padding: 1.05rem 1.15rem;
}

.menu-table-head,
.menu-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 90px 90px;
  gap: 1rem;
  align-items: start;
}

.menu-table-head {
  padding: 0.9rem 1.1rem;
  margin-bottom: 0.8rem;
  border-radius: var(--radius-sm);
  background: rgba(208, 0, 0, 0.18);
  border: 1px solid rgba(208, 0, 0, 0.45);
  font-weight: 800;
  color: #fff;
}

.menu-table-head > span:first-child {
  grid-column: 1 / 3;
  text-align: left;
}

.menu-table-head > span:nth-child(2),
.menu-table-head > span:nth-child(3) {
  text-align: right;
}

.menu-table-head-single,
.menu-row-single {
  grid-template-columns: 58px minmax(0, 1fr) 100px;
}

.menu-table-head-single > span:first-child {
  grid-column: 1 / 3;
  text-align: left;
}

.menu-table-head-single > span:last-child,
.menu-row-single > strong:last-child {
  text-align: right;
}

.menu-row > strong {
  color: #ffffff;
  white-space: nowrap;
  text-align: right;
}

.item-number {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(208, 0, 0, 0.16);
  border: 1px solid rgba(208, 0, 0, 0.35);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
}

.item-content {
  display: flex;
  flex-direction: column;
}

.item-content h3 {
  margin: 0;
}

.item-desc {
  margin: 0.25rem 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

/* ============================
   TEXT COLORS
============================ */

.menu-item p,
.quick-card p,
.category-card p,
.food-card p,
.location-card p,
.notice-box p,
.cta-box p,
.section-head p,
.about-copy p,
.map-copy p,
.menu-category-head p,
.delivery-box p {
  color: var(--text-soft);
}

.location-card a,
.notice-box a,
.cta-box a {
  color: #ffffff;
  font-weight: 800;
}

/* ============================
   LEGAL PAGES
============================ */

.legalPage {
  min-height: 70vh;
  padding: 4.7rem 0;
}

.legalContent {
  background: linear-gradient(180deg, #151515, #101010);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 4vw, 2.6rem);
  box-shadow: var(--shadow);
}

.legalContent h1 {
  color: #ffffff;
}

.legalContent h2 {
  margin: 1.8rem 0 0.5rem;
  font-size: 1.25rem;
  color: #ffffff;
}

.legalContent p {
  color: var(--text-soft);
}

.legalContent a {
  color: #ffffff;
  font-weight: 800;
  border-bottom: 1px solid rgba(208, 0, 0, 0.75);
}

/* ============================
   FOOTER
============================ */

.site-footer {
  border-top: 1px solid rgba(208, 0, 0, 0.35);
  background: #030303;
}

.footer-inner {
  min-height: 82px;
}

.footer-inner p {
  margin: 0;
  color: var(--text-soft);
}

/* ============================
   CREDITS
============================ */

.credit-box {
  position: relative;
  overflow: hidden;
  margin: 2.4rem 0;
  padding: clamp(1.3rem, 3vw, 1.8rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(124, 92, 255, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.credit-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 4px solid #7c5cff;
  pointer-events: none;
}

.credit-box span {
  display: block;
  margin-bottom: 1rem;
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.credit-box a {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1rem;
  align-items: center;
  border-bottom: 0;
}

.credit-logo {
  width: 92px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(124, 92, 255, 0.25));
}

.credit-box strong {
  display: block;
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1.1;
}

.credit-box strong::after {
  content: "Webdesign · Entwicklung · digitale Lösungen";
  display: block;
  margin-top: 0.35rem;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 600;
}

.credit-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.credit-main {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1rem;
  align-items: center;
}

.credit-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-soft);

  padding: 0.45rem 0.8rem;
  border-radius: 999px;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);

  transition: all 0.2s ease;
}

.credit-contact a:hover {
  color: #fff;
  border-color: rgba(124, 92, 255, 0.4);
  background: rgba(124, 92, 255, 0.08);
}

@media (max-width: 560px) {
  .credit-box a {
    grid-template-columns: 1fr;
  }

  .credit-logo {
    width: 82px;
  }
}

/* ============================
   SOCIAL LINKS
============================ */

.social-nav {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  padding: 0.55rem 0.85rem;
  border-radius: 999px;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);

  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.9rem;

  transition: all 0.2s ease;
}

.social-link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.social-link:hover {
  color: #fff;
  border-color: rgba(208, 0, 0, 0.6);
  background: rgba(208, 0, 0, 0.18);
}

.social-link img {
  width: 18px;
  height: 18px;
  filter: invert(1);
  opacity: 0.85;
}

.social-link:hover img {
  opacity: 1;
}

/* ============================
   COOKIE / CONSENT
============================ */

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-inner {
  width: min(100%, 980px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(208, 0, 0, 0.18), transparent 34%),
    linear-gradient(180deg, #151515, #0c0c0c);
  border: 1px solid rgba(208, 0, 0, 0.38);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.7);
}

.cookie-banner strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #fff;
  font-size: 1rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.cookie-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.map-consent-box {
  min-height: 320px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  background:
    radial-gradient(circle at top right, rgba(208, 0, 0, 0.16), transparent 35%),
    linear-gradient(180deg, #151515, #101010);
}

.map-consent-box p {
  max-width: 32rem;
  margin: 0 auto 1rem;
  color: var(--text-soft);
}

.map-consent-box iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.map-consent-box.is-loaded {
  display: block;
  padding: 0;
}

@media (max-width: 720px) {
  .cookie-banner-inner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .btn {
    width: 100%;
  }
}

/* ============================
   RESPONSIVE
============================ */

@media (max-width: 1000px) {
  .hero-grid,
  .about-grid,
  .location-grid,
  .quick-grid,
  .category-preview-grid,
  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .delivery-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 3.4rem 0;
  }

  .header-inner,
  .menu-header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .brand-logo {
    height: 58px;
  }

  .main-nav,
  .footer-nav,
  .header-actions {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.2rem;
  }

  .main-nav a,
  .footer-nav a,
  .text-link {
    white-space: nowrap;
  }

  .hero-grid,
  .about-grid,
  .location-grid,
  .quick-grid,
  .category-preview-grid,
  .featured-grid,
  .hero-info-cards,
  .delivery-facts {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 20rem;
  }

  .menu-tabs-wrap {
    top: 139px;
  }

  .menu-table-head,
  .menu-row {
    grid-template-columns: 32px minmax(0, 1fr) 68px 68px;
    gap: 0.55rem;
  }

  .menu-table-head {
    font-size: 0.85rem;
  }

  .menu-row strong {
    font-size: 0.9rem;
  }

  .btn,
  .menu-tab {
    width: 100%;
  }

  .button-row {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--container));
  }

  h1 {
    font-size: clamp(2.25rem, 15vw, 3.4rem);
  }

  .menu-table-head,
  .menu-row {
    grid-template-columns: minmax(0, 1fr) 68px 68px;
  }
}

@media (max-width: 720px) {
  .menu-table-head,
  .menu-row {
    grid-template-columns: 38px minmax(0, 1fr) 66px 66px;
    gap: 0.55rem;
  }

  .menu-table-head-single,
  .menu-row-single {
    grid-template-columns: 38px minmax(0, 1fr) 76px;
  }

  .menu-table-head {
    font-size: 0.85rem;
  }

  .item-number {
    width: 28px;
    height: 28px;
    font-size: 0.78rem;
  }

  .menu-row strong {
    font-size: 0.9rem;
  }
}
