/* ════════════════════════════════════════
   Sultan Döner — Stylesheet
   Fonts: Oswald + Inter
   Accent: #E8320A (Rot) + #FFA800 (Amber)
   Stil: Dark, Bold, Rounded, High Contrast
   ════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

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

/* ── Tokens ── */
:root {
  --black:        #0D0D0D;
  --dark:         #181818;
  --dark-2:       #202020;
  --card-dark:    #252525;
  --red:          #E8320A;
  --red-dark:     #C42808;
  --red-glow:     rgba(232, 50, 10, 0.25);
  --amber:        #FFA800;
  --amber-dark:   #D98E00;
  --white:        #FFFFFF;
  --cream:        #F5F2EC;
  --cream-dark:   #EAE6DE;
  --text-dark:    #1A1A1A;
  --muted-dark:   #888888;
  --muted-light:  #6B6560;
  --border-dark:  #2E2E2E;
  --border-light: #DDD9D0;
  --r-card:       20px;
  --r-sm:         12px;
  --r-btn:        100px;
  --nav-h:        68px;
  --max-w:        1100px;
  --t:            200ms ease;
}

/* ── Base ── */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; object-fit: cover; }
ul { list-style: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 4px; }

/* ── Container ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ═══════════════ BUTTONS ═══════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: var(--r-btn);
  transition: background var(--t), color var(--t), border-color var(--t), box-shadow var(--t), transform var(--t);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-red {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 8px 28px var(--red-glow);
}

.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.btn-outline-red {
  background: transparent;
  border-color: var(--red);
  color: var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 24px var(--red-glow);
}

.btn-dark {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.btn-dark:hover { background: var(--dark-2); border-color: var(--dark-2); }

/* ═══════════════ NAVBAR ═══════════════ */

#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--nav-h);
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.nav-logo-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
.nav-logo-text span { color: var(--red); }

.nav-links {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 0.4rem 0.9rem;
  border-radius: var(--r-btn);
  transition: color var(--t), background var(--t);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-links a.nav-active { color: var(--white); background: rgba(255,255,255,0.08); }

.nav-cta {
  flex-shrink: 0;
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  background: var(--red);
  color: var(--white);
  border-radius: var(--r-btn);
  cursor: pointer;
  transition: background var(--t), box-shadow var(--t), transform var(--t);
}
.nav-cta:hover {
  background: var(--red-dark);
  box-shadow: 0 6px 20px var(--red-glow);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: transparent;
  border: none;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background var(--t);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--dark);
  border-bottom: 2px solid var(--red);
  padding: 1.5rem;
  z-index: 40;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 1.25rem; }
.mobile-menu a {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 0.6rem 0.75rem;
  border-radius: var(--r-sm);
  transition: color var(--t), background var(--t);
}
.mobile-menu a:hover, .mobile-menu a.nav-active { color: var(--white); background: rgba(255,255,255,0.06); }
.mobile-menu .btn { width: 100%; justify-content: center; }

/* ═══════════════ HERO ═══════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(13,13,13,0.96) 0%,
    rgba(13,13,13,0.82) 45%,
    rgba(13,13,13,0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0 6rem;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--r-btn);
  margin-bottom: 1.75rem;
}
.hero-badge svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.hero-title {
  font-size: clamp(3.5rem, 8.5vw, 7.5rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
  margin-bottom: 1.5rem;
}
.hero-title .accent { color: var(--red); }

.hero-sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

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

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-dark);
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.hero-stat span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ═══════════════ SECTION HELPERS ═══════════════ */

.section-eyebrow {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-eyebrow--red  { color: var(--red); }
.section-eyebrow--amber { color: var(--amber); }
.section-eyebrow--muted { color: var(--muted-dark); }

.section-title-xl {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
}
.section-title-xl--dark { color: var(--text-dark); }
.section-title-xl--white { color: var(--white); }

/* ═══════════════ SPEISEKARTE ═══════════════ */

.speisekarte {
  background: var(--cream);
  padding: 6rem 0;
}

.speisekarte-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.speisekarte-header p {
  font-size: 1rem;
  color: var(--muted-light);
  margin-top: 0.75rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

/* Category nav pills */
.cat-nav {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.cat-pill {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: var(--r-btn);
  background: var(--white);
  color: var(--muted-light);
  border: 2px solid var(--border-light);
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t);
  white-space: nowrap;
}
.cat-pill:hover {
  background: var(--text-dark);
  color: var(--white);
  border-color: var(--text-dark);
}
.cat-pill.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* Category block */
.menu-category {
  margin-bottom: 4rem;
  scroll-margin-top: calc(var(--nav-h) + 2rem);
}
.menu-category:last-child { margin-bottom: 0; }

.cat-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cat-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--border-light);
}

/* Menu grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* Menu card */
.menu-card {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  border: 2px solid transparent;
  cursor: default;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.menu-card:hover {
  border-color: var(--red);
  box-shadow: 0 6px 24px rgba(232,50,10,0.1);
  transform: translateY(-2px);
}

.menu-card-body { flex: 1; min-width: 0; }

.menu-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.menu-desc {
  font-size: 0.82rem;
  color: var(--muted-light);
  line-height: 1.55;
}

.menu-badge {
  display: inline-block;
  margin-top: 0.6rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-btn);
}
.menu-badge--vegan { background: #E8F5E9; color: #2E7D32; }
.menu-badge--scharf { background: #FFF3E0; color: #E65100; }
.menu-badge--beliebt { background: #FFF8E1; color: var(--amber-dark); }

.menu-price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
  line-height: 1;
  padding-top: 2px;
  flex-shrink: 0;
}

/* Soßen-Hinweis */
.sosse-hint {
  background: var(--white);
  border-radius: var(--r-card);
  border: 2px dashed var(--border-light);
  padding: 1.5rem 2rem;
  text-align: center;
  margin-top: 1rem;
}
.sosse-hint p {
  font-size: 0.875rem;
  color: var(--muted-light);
  line-height: 1.6;
}
.sosse-hint strong { color: var(--text-dark); }

/* ═══════════════ INFO / OPENING HOURS ═══════════════ */

.info-section {
  background: var(--black);
  padding: 6rem 0;
  border-top: 3px solid var(--red);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Hours table */
.hours-box {
  background: var(--dark-2);
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--border-dark);
}
.hours-box-header {
  background: var(--red);
  padding: 1.25rem 2rem;
}
.hours-box-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
}

.hours-list { padding: 0.5rem 0; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 2rem;
  border-bottom: 1px solid var(--border-dark);
  transition: background var(--t);
}
.hours-row:last-child { border-bottom: none; }
.hours-row:hover { background: rgba(255,255,255,0.03); }
.hours-day { font-size: 0.9rem; color: rgba(255,255,255,0.55); font-weight: 500; }
.hours-time { font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600; color: var(--amber); letter-spacing: 0.04em; }
.hours-closed { color: rgba(255,255,255,0.25); font-family: 'Oswald', sans-serif; font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; }

/* Contact box */
.contact-area { display: flex; flex-direction: column; gap: 1rem; }

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--dark-2);
  border-radius: var(--r-card);
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--border-dark);
  cursor: default;
  transition: border-color var(--t), transform var(--t);
}
.contact-card:hover { border-color: var(--red); transform: translateX(4px); }

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.contact-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.2rem;
  display: block;
}
.contact-value {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.contact-value a { color: var(--amber); font-weight: 500; }
.contact-value a:hover { color: var(--amber-dark); }

/* Map */
.map-box {
  margin-top: 1rem;
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--border-dark);
}
.map-box iframe {
  width: 100%;
  height: 240px;
  border: none;
  display: block;
  filter: grayscale(30%) contrast(1.1);
}

/* ═══════════════ CTA BAND ═══════════════ */

.cta-band {
  background: var(--red);
  padding: 5rem 0;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}
.cta-band p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.cta-band .btn-outline-white:hover { color: var(--red); }

/* ═══════════════ FOOTER ═══════════════ */

footer {
  background: var(--dark);
  border-top: 1px solid var(--border-dark);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
}
.footer-brand span { color: var(--red); }

.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--t);
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ═══════════════ RESPONSIVE ═══════════════ */

@media (max-width: 900px) {
  .info-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 3rem 0 4rem; }
  .hero-stats { gap: 1.75rem; }

  .menu-grid { grid-template-columns: 1fr; }

  .speisekarte { padding: 4rem 0; }
  .info-section { padding: 4rem 0; }

  .cat-nav { gap: 0.4rem; }
  .cat-pill { padding: 0.45rem 1rem; font-size: 0.76rem; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 1.25rem; }
  .menu-card { flex-direction: column; gap: 0.75rem; }
  .menu-price { font-size: 1.5rem; }
}
