/* ============================================================
   BURGERTAXI — eigenständiger Stil, bewusst losgelöst von OzeanGrill
   ============================================================ */

.burgertaxi-page {
  --bt-bg:         #15130f;
  --bt-bg-alt:     #1c1914;
  --bt-card:       #221e17;
  --bt-yellow:     #f4c430;
  --bt-yellow-2:   #ffd84d;
  --bt-text:       #f5f1e6;
  --bt-text-muted: #b8b0a0;
  --bt-border:     rgba(244,196,48,0.25);
  --bt-font-display: 'Anton', 'Arial Black', sans-serif;
  --bt-font-body:    'Rubik', 'Helvetica Neue', Arial, sans-serif;

  background: var(--bt-bg);
  color: var(--bt-text);
  font-family: var(--bt-font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

.burgertaxi-page * { box-sizing: border-box; }
.burgertaxi-page img { max-width: 100%; height: auto; display: block; }
.burgertaxi-page a { color: var(--bt-yellow); text-decoration: none; transition: color 0.2s ease; }
.burgertaxi-page a:hover { color: var(--bt-yellow-2); }

.bt-container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* Checker stripe accent */
.bt-checker-strip {
  height: 14px;
  background-image:
    linear-gradient(45deg, #000 25%, transparent 25%, transparent 75%, #000 75%),
    linear-gradient(45deg, #000 25%, var(--bt-yellow) 25%, var(--bt-yellow) 75%, #000 75%);
  background-size: 28px 28px;
  background-position: 0 0, 14px 14px;
  background-color: var(--bt-yellow);
}

/* Header */
.bt-header {
  background: #0d0c09;
  border-bottom: 3px solid var(--bt-yellow);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.bt-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

.bt-logo { display: flex; align-items: center; gap: 14px; }
.bt-logo-badge-img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: block;
}
.bt-logo-tagline-standalone {
  font-size: 0.65rem;
  color: var(--bt-text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.bt-header-cta { display: flex; align-items: center; gap: 14px; }
.bt-back-link { font-size: 0.78rem; color: var(--bt-text-muted); text-decoration: underline; }
.bt-back-link:hover { color: var(--bt-yellow); }

/* Buttons */
.bt-btn {
  display: inline-block;
  font-family: var(--bt-font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 6px;
  text-transform: uppercase;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.bt-btn-primary {
  background: var(--bt-yellow);
  color: #15130f !important;
  box-shadow: 0 4px 0 #a87f0e;
}
.bt-btn-primary:hover { color: #15130f !important; transform: translateY(-2px); box-shadow: 0 6px 0 #a87f0e; }
.bt-btn-outline {
  background: transparent;
  border: 2px solid var(--bt-yellow);
  color: var(--bt-yellow) !important;
}
.bt-btn-outline:hover { background: var(--bt-yellow); color: #15130f !important; }

/* Hero */
.bt-hero {
  padding: 80px 0 60px;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(244,196,48,0.08), transparent 60%),
    var(--bt-bg);
}
.bt-hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0d0c09;
  background: var(--bt-yellow);
  padding: 6px 18px;
  border-radius: 30px;
  font-weight: 700;
  margin-bottom: 22px;
}
.bt-hero h1 {
  font-family: var(--bt-font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--bt-text);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.bt-hero h1 span { color: var(--bt-yellow); }
.bt-hero p {
  max-width: 560px;
  margin: 0 auto 32px;
  color: var(--bt-text-muted);
  font-size: 1.05rem;
}
.bt-hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.bt-hero-meta {
  margin-top: 40px;
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
  font-size: 0.85rem; color: var(--bt-text-muted);
}
.bt-hero-meta strong { color: var(--bt-yellow); display: block; font-family: var(--bt-font-display); font-size: 1.3rem; }

/* Section */
.bt-section { padding: 64px 0; }
.bt-section-title {
  font-family: var(--bt-font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-transform: uppercase;
  color: var(--bt-text);
  text-align: center;
  margin-bottom: 8px;
}
.bt-section-title span { color: var(--bt-yellow); }
.bt-section-sub {
  text-align: center;
  color: var(--bt-text-muted);
  max-width: 520px;
  margin: 0 auto 40px;
  font-size: 0.95rem;
}

/* Menu groups */
.bt-menu-group { margin-bottom: 44px; }
.bt-menu-group-title {
  font-family: var(--bt-font-display);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--bt-yellow);
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--bt-border);
}
.bt-menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bt-menu-item {
  background: var(--bt-card);
  border: 1px solid var(--bt-border);
  border-radius: 8px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}
.bt-menu-item-info h4 {
  font-family: var(--bt-font-body);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: none;
  color: var(--bt-text);
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}
.bt-menu-item-info p { font-size: 0.85rem; color: var(--bt-text-muted); }
.bt-menu-item-price {
  font-family: var(--bt-font-display);
  color: var(--bt-yellow);
  font-size: 1.05rem;
  white-space: nowrap;
}

.bt-note {
  background: var(--bt-bg-alt);
  border: 1px solid var(--bt-border);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 0.82rem;
  color: var(--bt-text-muted);
  margin-top: 24px;
}

/* Order CTA band */
.bt-order-band {
  background: var(--bt-yellow);
  padding: 48px 0;
  text-align: center;
}
.bt-order-band h2 {
  font-family: var(--bt-font-display);
  color: #15130f;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.bt-order-band p { color: #3a3215; margin-bottom: 22px; font-size: 0.95rem; }
.bt-order-band .bt-btn-primary {
  background: #15130f;
  color: var(--bt-yellow) !important;
  box-shadow: 0 4px 0 #000;
}
.bt-order-band .bt-btn-primary:hover { color: var(--bt-yellow-2) !important; }

/* Footer */
.bt-footer {
  background: #0d0c09;
  padding: 32px 0;
  text-align: center;
}
.bt-footer p { font-size: 0.8rem; color: var(--bt-text-muted); }
.bt-footer a { text-decoration: underline; }

@media (max-width: 700px) {
  .bt-menu-grid { grid-template-columns: 1fr; }
  .bt-header-cta { gap: 8px; }
  .bt-hero { padding: 56px 0 40px; }
}
