:root {
  --red: #e11414;
  --red-dark: #b00d0d;
  --black: #000000;
  --dark: #0d0d0d;
  --panel: #141414;
  --light: #f5f5f5;
  --muted: #b0b0b0;
  --card: #161616;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(0,0,0,.5);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--light);
  background: var(--black);
  line-height: 1.55;
}

.container { width: min(1140px, 92%); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--black);
  border-bottom: 3px solid var(--red);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: .75rem 0; gap: 1rem; }
.brand {
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem; letter-spacing: 1px;
  color: #fff; text-decoration: none; line-height: 1;
}
.brand span { color: var(--red); }
.nav-links { display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem; }
.nav-links a {
  color: #f1f1f1; text-decoration: none; font-weight: 600; font-size: .92rem;
  transition: color .2s;
}
.nav-links a:hover { color: var(--red); }

/* Order Now nav button */
.nav-links a.nav-order {
  background: var(--red); color: #fff;
  padding: .45rem 1rem; border-radius: 50px;
  font-weight: 700;
  transition: background .2s, transform .15s, color .2s;
}
.nav-links a.nav-order:hover {
  background: var(--red-dark); color: #fff; transform: translateY(-1px);
}

/* Language Selector */
.language-selector {
  display: flex; gap: .5rem;
}
.lang-btn {
  background: transparent; border: 2px solid var(--muted);
  color: var(--muted); padding: .4rem .8rem;
  font-weight: 600; font-size: .8rem; cursor: pointer;
  border-radius: 4px; transition: all .2s;
}
.lang-btn:hover {
  border-color: var(--red); color: var(--red);
}
.lang-btn.active {
  background: var(--red); border-color: var(--red);
  color: #fff;
}

/* Hero */
.hero { position: relative; }
.hero-banner { display: block; width: 100%; height: auto; object-fit: cover; max-height: 70vh; }
.hero-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.35) 60%, rgba(0,0,0,.1) 100%);
  color: #fff;
}
.hero-overlay h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 6vw, 4.2rem);
  line-height: 1.02; text-transform: uppercase; letter-spacing: 1px;
}
.hero-overlay p { margin: 1rem 0 1.6rem; font-size: clamp(1rem, 2.4vw, 1.3rem); max-width: 30ch; }

.btn {
  display: inline-block;
  background: var(--red); color: #fff;
  padding: .8rem 1.6rem; border-radius: 50px;
  font-weight: 700; text-decoration: none; letter-spacing: .3px;
  transition: transform .15s, background .2s;
}
.btn:hover { background: var(--red-dark); transform: translateY(-2px); }

/* About Section */
.about-content {
  max-width: 800px; margin: 0 auto;
}
.about-text {
  font-size: 1.1rem; line-height: 1.8;
  color: var(--light); text-align: center;
}

/* Menu sections */
.menu-section { padding: 4rem 0; }
.menu-section.alt { background: var(--panel); }
.section-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 2rem; position: relative; padding-bottom: .6rem;
}
.section-title::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 64px; height: 5px; background: var(--red); border-radius: 4px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.4rem;
}

.menu-card {
  background: var(--card);
  border: 1px solid #262626;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.menu-section.alt .menu-card { background: var(--dark); }
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(225,20,20,.18); border-color: var(--red); }

.menu-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(45deg, #1c1c1c, #1c1c1c 12px, #232323 12px, #232323 24px);
  color: var(--muted); font-weight: 700; letter-spacing: 2px; font-size: .85rem;
}

.menu-body { padding: 1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .4rem; }
.menu-head { display: flex; justify-content: space-between; align-items: baseline; gap: .8rem; }
.menu-head h3 { font-size: 1.12rem; font-weight: 700; }
.price {
  white-space: nowrap; font-weight: 700; color: var(--red);
  background: rgba(225,20,20,.15); padding: .15rem .55rem; border-radius: 50px; font-size: .9rem;
}
.menu-body p { color: var(--muted); font-size: .92rem; }

/* Visit */
.visit { padding: 4rem 0; background: var(--panel); color: #fff; text-align: center; }
.visit .section-title { color: #fff; display: inline-block; }
.visit .section-title::after { left: 50%; transform: translateX(-50%); }
.visit .address { font-size: 1.25rem; margin: 1.2rem 0 1.6rem; font-weight: 600; }
.visit .btn { margin: .4rem; }

/* Footer */
.site-footer { background: var(--black); color: #ddd; padding: 2rem 0; border-top: 3px solid var(--red); }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.socials { display: flex; gap: 1.2rem; }
.socials a { color: var(--red); text-decoration: none; font-weight: 600; }
.socials a:hover { text-decoration: underline; }
.site-footer small { color: #999; }

@media (max-width: 640px) {
  .nav-links { gap: .8rem; }
  .nav-links a { font-size: .82rem; }
  .nav-inner { flex-wrap: wrap; }
  .language-selector { order: 3; width: 100%; }
  .hero-overlay { background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.55)); }
  .footer-inner { flex-direction: column; text-align: center; }
  .about-text { font-size: 1rem; }
}
