/* ============================================================
   Berlin Express Kebab — stylesheet
   ============================================================ */

:root {
  --red: #c8102e;
  --red-dark: #9c0c23;
  --amber: #f4a300;
  --charcoal: #1a1a1a;
  --charcoal-soft: #2a2a2a;
  --ink: #222226;
  --muted: #6b6b73;
  --bg: #ffffff;
  --bg-alt: #faf7f3;
  --border: #eae4dc;
  --shadow: 0 10px 30px rgba(26, 26, 26, 0.08);
  --shadow-lg: 0 20px 45px rgba(26, 26, 26, 0.14);
  --radius: 14px;
  --radius-sm: 10px;
  --max: 1100px;
  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.15;
  color: var(--charcoal);
  margin: 0 0 0.5em;
}

h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1rem; }

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

img, iframe { max-width: 100%; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.narrow { max-width: 760px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.brand:hover { text-decoration: none; }
.brand em { color: var(--red); font-style: normal; }
.brand-mark { font-size: 1.4rem; }

.nav { display: flex; align-items: center; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.98rem;
}
.nav-menu a:hover { color: var(--red); text-decoration: none; }

.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--red-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--charcoal);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  text-align: center;
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(3.5rem, 8vw, 6rem);
  background:
    radial-gradient(circle at 20% 20%, rgba(244, 163, 0, 0.35), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(200, 16, 46, 0.55), transparent 50%),
    linear-gradient(135deg, #2a0a0f 0%, #7a0c1f 55%, #c8102e 100%);
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.6;
}
.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.hero-tagline {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 40ch;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary {
  background: var(--amber);
  color: var(--charcoal);
  box-shadow: 0 8px 24px rgba(244, 163, 0, 0.4);
}
.btn-primary:hover { background: #ffb51f; }
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.2); }
.btn-menu {
  background: #fff;
  color: var(--charcoal);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.btn-menu:hover { background: #f2f2f2; }

.hero-status {
  margin-top: 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 1.5rem;
}
.hero-status .dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 0.45rem;
  vertical-align: middle;
}
.status-open .dot { background: #35d07f; box-shadow: 0 0 0 4px rgba(53, 208, 127, 0.25); }
.status-closed .dot { background: #ff6b6b; box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.25); }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-alt { background: var(--bg-alt); }

.section-tag {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.section-lead { color: var(--muted); font-size: 1.05rem; }

/* Feature grid */
.feature-grid {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}
.feature-grid strong { font-family: var(--font-head); color: var(--charcoal); }
.feature-grid span:last-child { color: var(--muted); font-size: 0.92rem; }
.feature-icon { font-size: 1.6rem; }

/* Hours table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.75rem 0 1rem;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hours-table th,
.hours-table td {
  text-align: left;
  padding: 0.95rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}
.hours-table tr:last-child th,
.hours-table tr:last-child td { border-bottom: none; }
.hours-table th { font-weight: 600; color: var(--charcoal); }
.hours-table td { text-align: right; color: var(--muted); font-variant-numeric: tabular-nums; }
.hours-table tr.is-today {
  background: linear-gradient(90deg, rgba(244, 163, 0, 0.14), rgba(244, 163, 0, 0.04));
}
.hours-table tr.is-today th { color: var(--red-dark); }
.hours-table tr.is-today td { color: var(--charcoal); font-weight: 600; }
.hours-table tr.is-today th::after {
  content: "Today";
  display: inline-block;
  margin-left: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--red);
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  vertical-align: middle;
}
.hours-note { color: var(--muted); font-size: 0.9rem; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}
.contact-card h3 { margin-bottom: 0.6rem; }
.contact-card p { color: var(--muted); }
.link-arrow { font-weight: 600; }

.map-embed {
  margin-top: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  line-height: 0;
}
.map-embed iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 2rem;
  text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 0.85rem; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
}
.footer-address { font-style: normal; color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; }
.footer-address a,
.footer-nav a { color: var(--amber); }
.footer-nav { display: flex; gap: 1.5rem; }
.footer-nav a { font-weight: 500; }
.footer-copy { color: rgba(255, 255, 255, 0.5); font-size: 0.85rem; margin: 0.5rem 0 0; }

/* ---------- Legal / content pages ---------- */
.page-hero {
  background: linear-gradient(135deg, #2a0a0f 0%, #7a0c1f 100%);
  color: #fff;
  padding: clamp(3rem, 7vw, 4.5rem) 0;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3rem); }
.page-hero p { color: rgba(255, 255, 255, 0.85); margin: 0; }

.legal { padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 7vw, 5rem); }
.legal h2 { font-size: 1.4rem; margin-top: 2.2rem; }
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { color: #33333a; }
.legal ul { padding-left: 1.25rem; }
.legal li { margin-bottom: 0.4rem; }
.legal a { text-decoration: underline; }
.legal .updated { color: var(--muted); font-size: 0.9rem; font-style: italic; }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 0.5rem 1.25rem 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .nav-menu.open { max-height: 320px; }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; padding: 0.85rem 0; border-bottom: 1px solid var(--border); }
  .nav-menu li:last-child a { border-bottom: none; }
  .nav-cta { text-align: center; margin-top: 0.5rem; }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
