@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@400;500;600;700&display=swap');

:root {
  --orange: #d74701;
  --orange-dark: #b83a00;
  --orange-glow: rgba(215,71,1,0.28);
  --black: #0d0d0d;
  --card-bg: #161616;
  --card-border: #2a2a2a;
  --text: #e8e0d8;
  --text-muted: #b8b0a8;
  --gold: #d4a855;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
}

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: flex-end;  /* action buttons at right */
  padding: 0 2rem;
  height: 76px;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  overflow: visible;
}

/* ─── CENTERED LOGO SHIELD ─── */
.nav-logo-center {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 1100;
  text-decoration: none;
  display: block;
}

.nav-logo-shield {
  position: relative;
  width: 237px;
  background: rgba(13,13,13,0.97);
  border-left: 1px solid var(--card-border);
  border-right: 1px solid var(--card-border);
  border-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px 8px;
  /* height = nav (76px) + overhang (126px) */
  height: 202px;
  transition: background 0.2s;
}

/* Dreieck-Zipfel nach unten */
.nav-logo-shield::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-left: 119px solid transparent;
  border-right: 119px solid transparent;
  border-top: 20px solid rgba(13,13,13,0.97);
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4));
}

/* Orange Rahmen-Akzent seitlich unten */
.nav-logo-shield::before {
  content: '';
  position: absolute;
  bottom: -21px;
  left: -1px;
  right: -1px;
  width: 0;
  height: 0;
  border-left: 120px solid transparent;
  border-right: 120px solid transparent;
  border-top: 21px solid var(--orange);
  margin: 0 auto;
}

.nav-logo-center:hover .nav-logo-shield {
  background: #1a1a1a;
}

.nav-logo-center:hover .nav-logo-shield::after {
  border-top-color: #1a1a1a;
}

/* Adjust hero padding to match taller nav */
#hero { padding-top: 76px; }

/* Nav links vertically centered beside logo */
.nav-links-left,
.nav-links-right {
  display: flex;
  align-items: center;
}

.nav-logo-img-center {
  height: 192px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.nav-logo-center:hover .nav-logo-img-center {
  transform: scale(1.06);
}

/* sidebar variant (admin) */
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-logo-img--sidebar {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
}

/* Both nav link groups anchored to the nav center (where logo is) */
.nav-links-left {
  position: absolute;
  right: calc(50% + 130px);  /* end just outside the shield (half 237px + gap) */
  top: 50%;
  transform: translateY(-50%);
}

.nav-links-right {
  position: absolute;
  left: calc(50% + 130px);   /* start just outside the shield (half 237px + gap) */
  top: 50%;
  transform: translateY(-50%);
}

.nav-links a {
  color: #d0c8bf;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
  /* große Klickfläche, unsichtbar */
  padding: 1.2rem 0.75rem;
  margin: -1.2rem -0.75rem;
  display: inline-block;
}
.nav-links a:hover { color: var(--orange); }

.nav-actions {
  display: flex;
  gap: 0.75rem;
  /* stays at far right naturally with justify-content: flex-end */
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.2rem;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover { background: var(--orange-dark); transform: scale(1.03); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--card-border);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

/* ─── HERO ─── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 76px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #111;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.6) 55%, rgba(13,13,13,0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.92;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.5rem;
}

.hero-title span { color: var(--orange); }

.hero-subtitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--orange);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-stars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.hero-rating-text { font-size: 0.85rem; color: var(--text-muted); }
.hero-rating-text strong { color: var(--text); }

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-hero {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

/* ─── SECTION HEADER ─── */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-transform: uppercase;
  color: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.section-title::before,
.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--orange);
}

.section-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 0.75rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

section { padding: 5rem 2rem; position: relative; }

.container { max-width: 1200px; margin: 0 auto; width: 100%; }

/* ─── BURGER SWIPER ─── */
#featured {
  background: var(--black);
  border-top: 1px solid var(--card-border);
}

.swiper-outer {
  position: relative;
}

.swiper-track-wrap {
  overflow: hidden;
  border-radius: 8px;
}

.swiper-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: grab;
  user-select: none;
}

.swiper-track:active { cursor: grabbing; }

.burger-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: calc(33.333% - 1rem);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
}

.burger-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 0 30px var(--orange-glow);
}

.burger-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.burger-card:hover .burger-card-img { transform: scale(1.04); }

.burger-card-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.burger-card-body { padding: 1.25rem; }

.burger-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.35rem;
}

.burger-card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.burger-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.burger-card-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--orange);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
}

.swiper-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.swiper-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.swiper-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.swiper-dots {
  display: flex;
  gap: 0.5rem;
}

.swiper-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--card-border);
  cursor: pointer;
  transition: all 0.2s;
}

.swiper-dot.active {
  background: var(--orange);
  transform: scale(1.3);
}

/* ─── WHY SMASH ─── */
#why {
  background: linear-gradient(180deg, #111 0%, #0d0d0d 100%);
  border-top: 1px solid var(--card-border);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: default;
  transition: transform 0.35s, box-shadow 0.35s;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.55);
}

.why-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.why-card:hover .why-card-img { transform: scale(1.06); }

.why-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.05) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  transition: background 0.3s;
}
.why-card:hover .why-card-overlay { background: linear-gradient(to top, rgba(215,71,1,0.75) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.05) 100%); }

.why-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.25rem;
  letter-spacing: 0.04em;
}

.why-card p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.4;
}

/* ─── MENU SECTION ─── */
#menu {
  background: var(--black);
  border-top: 1px solid var(--card-border);
}

.menu-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Full-width tabs: each tab takes equal share of the container */
.menu-tabs-full {
  justify-content: stretch;
  gap: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--card-border);
}

.menu-tabs-full .menu-tab {
  flex: 1 1 0;
  border-radius: 0;
  border: none;
  border-right: 1px solid var(--card-border);
  text-align: center;
  padding: 0.75rem 0.5rem;
  font-size: 0.82rem;
}

.menu-tabs-full .menu-tab:last-child {
  border-right: none;
}

.menu-tab {
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.menu-tab.active, .menu-tab:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.menu-panel { display: none; }
.menu-panel.active { display: block; }

/* Category hero image banner */
.menu-cat-hero {
  position: relative;
  width: 100%;
  height: clamp(220px, 32vw, 360px);
  background: #0a0a0a;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid var(--card-border);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-cat-hero::before {
  content: '';
  position: absolute;
  inset: -4%;
  background-image: var(--hero-bg, none);
  background-size: cover;
  background-position: center center;
  filter: blur(32px) brightness(0.55) saturate(1.05);
  z-index: 0;
  pointer-events: none;
}

.menu-cat-hero--placeholder {
  background: linear-gradient(135deg, #1a1a1a 0%, #222 50%, #1a1a1a 100%);
  border-left: 3px solid var(--orange);
  height: auto;
}
.menu-cat-hero--placeholder::before { display: none; }
.menu-cat-hero--placeholder .menu-cat-hero-overlay {
  position: static;
  background: none;
  padding: 0.75rem 1.5rem;
}
.menu-cat-hero--placeholder .menu-cat-hero-title {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  letter-spacing: 0.08em;
  text-shadow: none;
}

.menu-cat-hero-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  height: calc(100% * var(--hero-scale, 1));
  width: auto;
  max-width: none;
  object-fit: fill;
  display: block;
}

.menu-cat-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.15) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.75rem 2.25rem;
  pointer-events: none;
}

.menu-cat-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
  line-height: 1;
}

@media (max-width: 600px) {
  .menu-cat-hero { height: 200px; margin-bottom: 1.25rem; }
  .menu-cat-hero--placeholder { height: auto; }
  .menu-cat-hero-overlay { padding: 1.1rem 1.25rem; }
}

/* Item thumbnail in menu list */
.menu-item-thumb {
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--card-border);
}

.menu-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.menu-item:hover .menu-item-thumb img { transform: scale(1.08); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--card-border);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  overflow: hidden;
}

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

.menu-item {
  background: var(--card-bg);
  padding: 1.5rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  transition: background 0.2s;
}

.menu-item:hover { background: #1e1e1e; }

.menu-item-info { flex: 1; }

.menu-item-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.3rem;
}

.menu-item-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.menu-item-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--orange);
  white-space: nowrap;
}

/* ─── ÖFFNUNGSZEITEN STATUS ─── */
.opening-status-wrap {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  margin-bottom: 2rem;
}
.opening-hours-table { display: flex; flex-direction: column; gap: 0.6rem; }
.oh-row { display: flex; gap: 2rem; align-items: center; }
.oh-day { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--text); min-width: 110px; }
.oh-time { font-size: 1rem; color: var(--text-muted); white-space: nowrap; }
.oh-time--closed { color: #ef4444; font-style: italic; }

.oh-row--today { background: rgba(215,71,1,0.08); border-radius: 6px; padding: 0.25rem 0.5rem; margin: 0 -0.5rem; }
.oh-row--today .oh-day { color: var(--orange); }
.oh-row--today .oh-time { color: var(--text); font-weight: 600; }

.home-status-today {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Admin: per-day row */
.oh-admin-day-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.35rem 0;
}
.oh-admin-day-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  min-width: 95px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.opening-status-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ─── LIEFERANDO BANNER ─── */
#order-banner {
  background: linear-gradient(135deg, #1a0a00, #2a1000);
  border-top: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#order-banner::before {
  content: '🍔';
  position: absolute;
  font-size: 12rem;
  opacity: 0.05;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
}

.banner-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.5rem;
}

.banner-title span { color: var(--orange); }

.banner-sub {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.banner-platforms {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
}

.platform-lieferando {
  background: #ff8000;
  color: #fff;
}
.platform-lieferando:hover { background: #e67200; transform: scale(1.04); }

.platform-phone {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--text);
}
.platform-phone:hover { border-color: var(--orange); color: var(--orange); }

/* ─── LOCATIONS ─── */
#standorte {
  background: #111;
  border-top: 1px solid var(--card-border);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.location-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 2rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.location-card:hover {
  border-color: var(--orange);
  box-shadow: 0 0 20px var(--orange-glow);
}

.location-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.location-card h3 span { color: var(--orange); }

.loc-main-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange) !important;
  border: 1px solid rgba(215,71,1,0.5);
  border-radius: 3px;
  padding: 0.1rem 0.4rem;
  vertical-align: middle;
  margin-left: 0.3rem;
}

.location-info { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.location-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.location-info .icon { color: var(--orange); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

.location-cta { margin-top: 1.5rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ─── CATERING ─── */
#catering {
  background: var(--black);
  border-top: 1px solid var(--card-border);
}

.catering-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.catering-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--card-border);
  position: relative;
}

.catering-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.catering-img:hover img { transform: scale(1.04); }

.catering-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.7) 0%, transparent 60%);
}

/* .catering-content – no additional styles needed */

.catering-content .section-header {
  text-align: left;
  margin-bottom: 1.5rem;
}

.catering-content .section-title::before { display: none; }

.catering-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.catering-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.catering-features .check { color: var(--orange); font-size: 1rem; }

/* ─── TESTIMONIALS ─── */
#testimonials {
  background: #111;
  border-top: 1px solid var(--card-border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 1.75rem;
  position: relative;
  transition: border-color 0.3s;
}

.testimonial-card:hover { border-color: var(--orange); }

.testimonial-quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--orange);
  font-family: Georgia, serif;
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  opacity: 0.4;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  padding-top: 1rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #7a2d00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
}
.testimonial-meta { font-size: 0.75rem; color: var(--text-muted); }

.testimonial-stars { color: var(--gold); font-size: 0.8rem; }

/* ─── ABOUT ─── */
#about {
  background: var(--black);
  border-top: 1px solid var(--card-border);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
  transition: border-color 0.3s;
}
.about-stat-card:hover { border-color: var(--orange); }

.about-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--orange);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}

.about-text p {
  color: var(--text);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* ─── FOOTER ─── */
footer {
  background: #080808;
  border-top: 1px solid var(--card-border);
  padding: 3rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-brand-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 36px; height: 36px;
  border-radius: 6px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

.footer-col ul li a {
  font-size: 0.83rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--orange); }

.footer-col ul li { font-size: 0.83rem; color: var(--text-muted); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }

.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.78rem; color: var(--text-muted); text-decoration: none; }
.footer-legal a:hover { color: var(--orange); }

/* ─── DISCOUNT POPUP ─── */
.discount-banner {
  background: linear-gradient(90deg, var(--orange-dark), var(--orange));
  color: #fff;
  text-align: center;
  padding: 0.6rem 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 999;
}

.discount-banner span { color: #fff900; }

/* ─── CATERING EVENT GRID ─── */
.catering-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.catering-event-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.catering-event-card:hover {
  border-color: var(--orange);
  box-shadow: 0 0 24px var(--orange-glow);
  transform: translateY(-5px);
}

.catering-event-icon {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 1rem;
}

.catering-event-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.6rem;
  hyphens: auto;
}

.catering-event-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─── CATERING MODAL ─── */
.catering-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(4px);
}

.catering-modal-overlay.active {
  display: flex;
}

.catering-modal-box {
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  width: 100%;
  max-width: 620px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 0 60px rgba(244,97,26,0.15);
  animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1) forwards;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.catering-modal-close {
  position: absolute;
  top: 1rem; right: 1.2rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.catering-modal-close:hover { color: var(--orange); }

.catering-modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.catering-modal-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 0.5rem;
}

.catering-modal-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.4rem;
}

.catering-modal-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.catering-modal-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.catering-modal-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.catering-modal-form label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.catering-modal-form input,
.catering-modal-form select,
.catering-modal-form textarea {
  background: #0d0d0d;
  border: 1px solid var(--card-border);
  border-radius: 6px;
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  padding: 0.65rem 0.9rem;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.catering-modal-form input:focus,
.catering-modal-form select:focus,
.catering-modal-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

.catering-modal-form textarea { resize: vertical; min-height: 100px; }
.catering-modal-form select option { background: #161616; }
.catering-modal-form input::placeholder,
.catering-modal-form textarea::placeholder { color: #555; }

.catering-success {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
}

.catering-success h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: #fff;
  margin: 0.75rem 0 0.5rem;
}

.catering-success p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.25s; }
.fade-up-3 { animation-delay: 0.4s; }
.fade-up-4 { animation-delay: 0.55s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .catering-inner, .about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .burger-card { flex: 0 0 calc(50% - 0.75rem); min-width: calc(50% - 0.75rem); }
}

@media (max-width: 640px) {
  .burger-card { flex: 0 0 85%; min-width: 85%; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .catering-modal-form .form-row { grid-template-columns: 1fr; }
  .catering-modal-box { padding: 1.75rem 1.25rem; }

  /* Hero: Stats immer in einer Zeile, kein Umbruch */
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 0;
    column-gap: 1.5rem;
    margin-bottom: 1.75rem;
  }
  .hero-stat-num { font-size: 1.6rem; }
  .hero-stat-label { font-size: 0.68rem; }

  /* Rating-Text kürzer umbrechen */
  .hero-rating-text { font-size: 0.78rem; }
  .hero-stars { gap: 0.4rem; margin-bottom: 1.25rem; }

  /* Hero-Content weniger Padding */
  .hero-content { padding: 0 1.25rem; }

  /* Kleinere Thumbnails + Padding auf schmalen Screens */
  .menu-item-thumb { width: 90px; height: 90px; }
  .menu-item { padding: 1.1rem 1.2rem; gap: 0.85rem; }
  .menu-item-name { font-size: 1.05rem; }
  .menu-item-desc { font-size: 0.78rem; }
  .menu-item-price { font-size: 1.25rem; }

  /* Öffnungszeiten-Box kompakter */
  .opening-status-wrap { padding: 1.25rem 1.2rem; gap: 1.5rem; }
  .oh-row { gap: 1rem; }

  /* Section-Padding schmaler */
  section { padding: 3.5rem 1.25rem; }
}

@media (max-width: 400px) {
  /* Extra-kleine Phones (SE, Moto G) */
  .hero-stat-num { font-size: 1.35rem; }
  .hero-stat-label { font-size: 0.62rem; }
  .hero-stats { column-gap: 1rem; }
  .hero-content { padding: 0 1rem; }

  .menu-item-thumb { width: 70px; height: 70px; }
  .menu-item { padding: 0.9rem 1rem; gap: 0.7rem; }
  .menu-item-name { font-size: 0.95rem; }
  .menu-item-price { font-size: 1.1rem; }
  section { padding: 3rem 1rem; }
  .opening-status-wrap { padding: 1rem; gap: 1rem; }
  .oh-row { gap: 0.75rem; }
  .oh-day { min-width: 75px; font-size: 0.95rem; }
  .oh-time { font-size: 0.88rem; }
}

/* ─── MOBILE NAV ─── */
.nav-hamburger {
  display: none;
}

@media (max-width: 1100px) {
  /* Shield mobile: 102px hoch + 20px Dreieck = 122px Gesamtüberhang */
  /* Subpage wrapper already has padding-top:76px, so only 46px more needed */
  /* flex-start statt center: Content immer sicher unterhalb des Shields, unabhängig von Content-Höhe */
  #hero { padding-top: 152px; align-items: flex-start; }
  .page-hero { margin-top: 46px; align-items: center; min-height: 380px; }
  .page-hero-content { padding-top: 1.5rem; }

  /* Links verstecken, Hamburger zeigen */
  .nav-links { display: none !important; }

  .nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    z-index: 1200;
  }

  .nav-hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
    transform-origin: center;
  }

  /* X-Animation wenn offen */
  nav.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  nav.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Logo halbieren */
  .nav-logo-shield {
    width: 120px !important;
    height: 102px !important;
  }
  .nav-logo-img-center { height: 96px !important; }
  .nav-logo-shield::after {
    border-left-width: 60px !important;
    border-right-width: 60px !important;
  }
  .nav-logo-shield::before {
    border-left-width: 61px !important;
    border-right-width: 61px !important;
  }
}

/* Aufklapp-Menü */
.nav-mobile-menu {
  display: block;
  position: fixed;
  top: 76px;
  left: 0; right: 0;
  z-index: 999;
  background: rgba(13,13,13,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--orange);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* visibility verzögert sich um 0.3s beim Schließen (nach der Transition) */
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1),
              opacity 0.3s ease,
              visibility 0s linear 0.3s;
}

.nav-mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  /* Beim Öffnen: visibility sofort (kein Delay) */
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1),
              opacity 0.3s ease,
              visibility 0s linear 0s;
}

.nav-mobile-menu ul {
  list-style: none;
  padding: 0.5rem 0 1rem;
}

.nav-mobile-menu ul li a {
  display: block;
  padding: 1rem 2rem;
  color: var(--text);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--card-border);
  transition: color 0.2s, background 0.2s;
}

.nav-mobile-menu ul li:last-child a { border-bottom: none; }
.nav-mobile-menu ul li a:hover { color: var(--orange); background: rgba(244,97,26,0.06); }

@media (min-width: 1101px) {
  .nav-mobile-menu { display: none !important; }
}

/* ─── TESTIMONIALS MARQUEE ─── */
#testimonials {
  padding: 5rem 0 4rem;
  background: #0a0a0a;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.text-gold {
  color: #d5b781;
}

.testimonials-marquee-wrap {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.testimonials-marquee {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee-scroll 60s linear infinite;
  padding: 0.5rem 0;
}

.testimonials-marquee:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.tcard {
  flex: 0 0 360px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.25s, transform 0.25s;
}

.tcard:hover {
  border-color: rgba(213,183,129,0.4);
  transform: translateY(-3px);
}

.tcard-top {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.tcard-stars {
  color: #d5b781;
  font-size: 1rem;
  letter-spacing: 2px;
}

.tcard-title {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.tcard-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.90);
  line-height: 1.65;
  flex: 1;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.tcard-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d5b781, #b8964c);
  color: #000;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tcard-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.tcard-role {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.70);
  margin-top: 0.15rem;
}

/* ─── PAGE HERO (Unterseiten Header) ─── */
.page-hero {
  position: relative;
  width: 100%;
  height: clamp(300px, 38vw, 440px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: #0a0a0a;
}

/* Blurred ambient backdrop: same image, covers full box, strong blur */
.page-hero::before {
  content: '';
  position: absolute;
  inset: -4%;
  background-image: var(--hero-bg, none);
  background-size: cover;
  background-position: center center;
  filter: blur(38px) brightness(0.55) saturate(1.05);
  z-index: 0;
  pointer-events: none;
}

.page-hero-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  height: calc(100% * var(--hero-scale, 1));
  width: auto;
  max-width: none;
  object-fit: fill;
  transition: transform 0.6s ease;
}

.page-hero:hover .page-hero-img {
  transform: translate(-50%, -50%) scale(1.03);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,0.35) 0%,
    rgba(13,13,13,0.55) 50%,
    rgba(13,13,13,0.85) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 2rem 2.5rem;
}

.page-hero-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
  display: block;
}

.page-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 5rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  text-shadow: 0 4px 24px rgba(0,0,0,0.7);
}

.page-hero-title span {
  color: var(--orange);
}

.page-hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.75rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── NAV RIGHT CLUSTER (Kontakt-Button + Status-Pill) ─── */
.nav-right-cluster {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-contact-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--orange);
  border: none;
  border-radius: 20px;
  padding: 0.28rem 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.nav-contact-btn:hover { background: #e55b00; transform: scale(1.04); }

@media (max-width: 1100px) {
  .nav-right-cluster { display: none; }
}

/* ─── NAV STATUS PILL ─── */
.nav-status-pill {
  position: static;
  transform: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.22rem 0.65rem;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  background: rgba(22,22,22,0.9);
  white-space: nowrap;
  transition: border-color 0.3s, color 0.3s;
  visibility: hidden;
}
.nav-status-pill.is-open  { border-color: rgba(34,197,94,0.4); color: #22c55e; }
.nav-status-pill.is-closed{ border-color: rgba(239,68,68,0.4);  color: #ef4444; }
.nav-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
  animation: statusPulse 2.5s ease-in-out infinite;
}
@keyframes statusPulse { 0%,100%{opacity:1} 50%{opacity:0.45} }

@media (max-width: 1100px) {
  .nav-status-pill { display: none; }
}

/* Mobile menu status row */
.nav-mobile-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.9rem 2rem;
  border-top: 1px solid var(--card-border);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav-mobile-status-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
}

/* ─── HOMEPAGE STANDORTE-PREVIEW ─── */
#standorte-preview {
  background: var(--black);
  border-top: 1px solid var(--card-border);
}

.home-status-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 0.9rem 1.4rem;
  margin-bottom: 2rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.home-status-open-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.home-status-hours {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  flex: 1;
}
.home-status-hours span {
  white-space: nowrap;
}
@media (max-width: 640px) {
  .home-status-hours { gap: 0.6rem; font-size: 0.82rem; }
  .home-status-bar { gap: 0.75rem; }
}

/* ─── ADMIN: Öffnungszeiten ─── */
.oh-admin-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.oh-admin-row .form-input { flex: 1; }
.oh-closed-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}
.oh-closed-toggle input[type="checkbox"] { cursor: pointer; accent-color: var(--orange); }

/* Closure date pills */
.closure-dates-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  min-height: 2rem;
}
.closure-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(215,71,1,0.12);
  border: 1px solid rgba(215,71,1,0.3);
  color: var(--text);
  border-radius: 4px;
  padding: 0.2rem 0.55rem;
  font-size: 0.83rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
}
.closure-pill button {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); font-size: 1rem; line-height: 1;
  padding: 0; margin-left: 2px;
}
.closure-pill button:hover { color: #ef4444; }
.closure-add-row {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}
.closure-add-row input[type="date"] {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--text);
  border-radius: 4px;
  padding: 0.45rem 0.75rem;
  font-size: 0.88rem;
  font-family: inherit;
}
.closure-add-row input[type="date"]:focus { outline: none; border-color: var(--orange); }

/* Orange accent bar at bottom of page hero */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  z-index: 3;
}

/* ─── MOBILE KONTAKT-BUTTON (in mobile Menü) ─── */
.nav-mobile-contact-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 1rem 2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  background: none;
  border: none;
  border-bottom: 1px solid var(--card-border);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.nav-mobile-contact-btn:hover { background: rgba(244,97,26,0.06); }

/* ─── KONTAKT-MODAL ─── */
body.modal-open { overflow: hidden; }

.contact-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.contact-modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.contact-modal {
  background: #1a1a1a;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem 2.25rem 2.25rem;
  width: 100%;
  max-width: 480px;
  position: relative;
  transform: translateY(16px);
  transition: transform 0.2s;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}
.contact-modal-overlay.is-open .contact-modal {
  transform: translateY(0);
}

.contact-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.15s;
}
.contact-modal-close:hover { color: #fff; }

.contact-modal-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.15rem;
  letter-spacing: 0.04em;
}
.contact-modal-sub {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0 0 1.5rem;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.contact-form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-form-group input,
.contact-form-group textarea {
  background: #111;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.6rem 0.85rem;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}
.contact-form-group input:focus,
.contact-form-group textarea:focus {
  border-color: var(--orange);
}

.contact-form-submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s;
}
.contact-form-submit:hover:not(:disabled) { background: #e55b00; }
.contact-form-submit:disabled { opacity: 0.6; cursor: default; }

.contact-form-feedback {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  min-height: 1.2em;
  text-align: center;
}
.contact-form-feedback.is-success { color: #22c55e; }
.contact-form-feedback.is-error   { color: #ef4444; }
