/* ===== Variables ===== */
:root {
  --red: #c41e1e;
  --red-dark: #9a1515;
  --red-glow: rgba(196, 30, 30, 0.35);
  --gold: #f5c518;
  --gold-dark: #d4a80f;
  --dark: #0d0d0d;
  --dark-2: #1a1a1a;
  --dark-3: #252525;
  --gray: #888;
  --gray-light: #ccc;
  --white: #fafafa;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

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

/* ===== Logo ===== */
.logo-food, .logo-drink {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--red);
  letter-spacing: 0.05em;
}
.logo-amp {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  margin: 0 2px;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-light);
  transition: color var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }
.nav__cta {
  background: var(--red);
  color: var(--white);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.nav__cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px var(--red-glow);
}
.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--red-glow);
}
.btn--outline {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
  backdrop-filter: blur(4px);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13,13,13,0.7) 0%,
    rgba(13,13,13,0.5) 40%,
    rgba(13,13,13,0.85) 100%
  );
}
.hero__content {
  position: relative;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
}
.hero__tag {
  display: inline-block;
  background: rgba(245, 197, 24, 0.15);
  color: var(--gold);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(245, 197, 24, 0.3);
}
.hero__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 1rem;
}
.hero__title-line {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 0.9;
  color: var(--red);
  text-shadow: 3px 3px 0 var(--dark), 0 0 60px var(--red-glow);
  letter-spacing: 0.02em;
}
.hero__title-amp {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--gold);
  text-shadow: 0 0 40px rgba(245, 197, 24, 0.4);
}
.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--gray-light);
  margin-bottom: 2.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero__hours {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1rem 2rem;
}
.hero__hours-label {
  display: block;
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero__hours-time {
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
}
.hero__hours-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}
.hero__scroll a { color: var(--gray); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== Section Headers ===== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header--left { text-align: left; }
.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.section-desc {
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ===== Menu ===== */
.menu {
  padding: 6rem 0;
  background: var(--dark-2);
}
.menu__tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.menu__tab {
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
  background: var(--dark-3);
  border: 1px solid transparent;
  transition: all var(--transition);
}
.menu__tab:hover { color: var(--white); border-color: rgba(255,255,255,0.1); }
.menu__tab.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 4px 16px var(--red-glow);
}
.menu__panel { display: none; animation: fadeIn 0.4s ease; }
.menu__panel.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.menu__allergen, .menu__note {
  text-align: center;
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.menu__grid {
  display: grid;
  gap: 0.75rem;
  max-width: 800px;
  margin: 0 auto;
}
.menu__grid--two-col {
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
  gap: 2rem;
}
.menu__subheading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--red);
}
.menu__subheading--spaced { margin-top: 2rem; }
.menu__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--dark-3);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all var(--transition);
}
.menu__item:hover {
  border-color: rgba(196, 30, 30, 0.3);
  transform: translateX(4px);
  background: rgba(196, 30, 30, 0.05);
}
.menu__item--featured {
  border-color: rgba(245, 197, 24, 0.3);
  background: rgba(245, 197, 24, 0.05);
}
.menu__item--featured:hover {
  border-color: rgba(245, 197, 24, 0.5);
  background: rgba(245, 197, 24, 0.08);
}
.menu__item-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.menu__item-info p {
  font-size: 0.85rem;
  color: var(--gray);
}
.menu__price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* ===== Highlights ===== */
.highlights {
  padding: 6rem 0;
  background: var(--dark);
}
.highlights__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.highlight-card {
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.highlight-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.highlight-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.highlight-card:hover .highlight-card__img img {
  transform: scale(1.05);
}
.highlight-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--red);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--red-glow); }
  50% { box-shadow: 0 0 0 8px transparent; }
}
.highlight-card__body {
  padding: 1.5rem;
}
.highlight-card__body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.highlight-card__body p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.highlight-card__price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
}

/* ===== Contact ===== */
.contact {
  padding: 6rem 0;
  background: var(--dark-2);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.contact__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 30, 30, 0.15);
  border-radius: 10px;
  color: var(--red);
}
.contact__item h3 {
  font-size: 0.85rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}
.contact__item p { font-size: 0.95rem; }
.contact__item a {
  color: var(--gold);
  transition: color var(--transition);
}
.contact__item a:hover { color: var(--white); }
.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

/* ===== Footer ===== */
.footer {
  padding: 3rem 0;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.footer__brand p {
  color: var(--gray);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}
.footer__links {
  display: flex;
  gap: 2rem;
}
.footer__links a {
  color: var(--gray-light);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }
.footer__copy {
  color: var(--gray);
  font-size: 0.8rem;
}

/* ===== Impressum Page ===== */
.page-hero {
  padding: 8rem 0 3rem;
  background: var(--dark-2);
  text-align: center;
}
.legal-content {
  padding: 3rem 0 6rem;
  max-width: 700px;
  margin: 0 auto;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  margin: 2rem 0 0.75rem;
  letter-spacing: 0.03em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content address {
  color: var(--gray-light);
  margin-bottom: 1rem;
  font-style: normal;
  line-height: 1.8;
}
.legal-content a { color: var(--gold); }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--dark-2);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right var(--transition);
    box-shadow: -4px 0 30px rgba(0,0,0,0.5);
  }
  .nav__menu.active { right: 0; }
  .nav__cta { margin-top: 1rem; }
  .hero__hours {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.2rem 1.5rem;
  }
  .hero__hours-divider {
    width: 60px;
    height: 1px;
  }
  .menu__grid--two-col {
    grid-template-columns: 1fr;
  }
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .contact__map { height: 300px; }
  .highlights__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; }
  .menu__tab { padding: 0.6rem 1rem; font-size: 0.8rem; }
  .menu__item { padding: 1rem; }
  .menu__price { font-size: 1.2rem; }
}
