/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --schwarz:    #0b0b0b;
  --hellgrau:   #f1f0f0;
  --grau:       #5e5653;
  --rot:        #7d0000;
  --weiss:      #ffffff;

  --font-heading: 'Special Elite', serif;
  --font-body:    'Clear Sans', sans-serif;

  --radius: 4px;
  --max-width: 1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--weiss);
  color: var(--schwarz);
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3 { font-family: var(--font-heading); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.25rem; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rot);
  margin-bottom: 0.5rem;
}
.eyebrow--light { color: #e8a0a0; }

.section-title { margin-bottom: 0.5rem; }
.section-title--light { color: var(--weiss); margin-bottom: 0.5rem; font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 2.8rem); }
.section-sub { color: var(--grau); margin-bottom: 2.5rem; }
.section-sub--light { color: #d0cac9; margin-bottom: 2.5rem; }

/* ===========================
   LAYOUT HELPERS
=========================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col--even { align-items: start; }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn--primary {
  background: var(--rot);
  color: var(--weiss);
  border: 2px solid var(--rot);
}
.btn--primary:hover { background: #5a0000; border-color: #5a0000; }

/* ===========================
   PLACEHOLDERS (bis Fotos da sind)
=========================== */
.image-placeholder {
  background: var(--hellgrau);
  border: 2px dashed #ccc;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grau);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* ===========================
   NAV
=========================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--schwarz);
  border-bottom: 2px solid var(--rot);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo img {
  height: 44px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: 2rem;
}

.nav__links a {
  color: var(--hellgrau);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--rot); }

.nav__burger {
  display: none;
  background: none;
  border: none;
  color: var(--weiss);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 90vh;
  background: var(--schwarz) url('https://images.unsplash.com/photo-1529692236671-f1f6cf9683ba?w=1600&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11,11,11,0.85) 50%, rgba(11,11,11,0.3));
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  color: var(--weiss);
  max-width: 600px;
  margin-left: calc((100vw - var(--max-width)) / 2 + 1.5rem);
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e8a0a0;
  margin-bottom: 1rem;
}

.hero__title {
  color: var(--weiss);
  margin-bottom: 1.25rem;
}

.hero__subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: #d0cac9;
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
}

.hero__sub {
  font-size: 1.1rem;
  color: #d0cac9;
  margin-bottom: 2rem;
  max-width: 480px;
}

/* ===========================
   ÜBER UNS
=========================== */
.ueber-uns { background: var(--weiss); }

.ueber-uns__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
}

.ueber-uns__text h2 { margin-bottom: 1.25rem; }
.ueber-uns__text p { color: var(--grau); margin-bottom: 1rem; }
.ueber-uns__text p:last-child { margin-bottom: 0; }

/* ===========================
   WOCHENANGEBOT
=========================== */
.wochenangebot {
  background: var(--schwarz);
  color: var(--weiss);
  position: relative;
  overflow: hidden;
}

.wochenangebot h2 { color: var(--weiss); }

.wochenangebot .container {
  position: relative;
  z-index: 1;
}

.angebot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.angebot-card {
  background: #1a1a1a;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #2a2a2a;
  border-left: 3px solid var(--rot);
  transition: background 0.2s;
}
.angebot-card:hover { background: #222; }

.angebot-card__body {
  padding: 1.5rem;
}

.angebot-card__body h3 {
  color: var(--weiss);
  margin-bottom: 0.4rem;
}

.angebot-card__body p {
  color: #9a9090;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.angebot-card__price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--rot);
}

/* ===========================
   PRODUKTE
=========================== */
.produkte { background: var(--hellgrau); }

.produkte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.produkt-kategorie {
  background: var(--weiss);
  padding: 2rem;
  border-radius: var(--radius);
  border-top: 3px solid var(--rot);
}

.produkt-kategorie__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.produkt-kategorie h3 {
  font-family: var(--font-heading);
  margin-bottom: 0.75rem;
}

.produkt-kategorie p {
  color: var(--grau);
  font-size: 0.95rem;
}

/* ===========================
   INFO (Öffnungszeiten + Kontakt)
=========================== */
.info {
  background: var(--schwarz);
  color: var(--weiss);
}

.info__note {
  font-size: 0.85rem;
  color: #e8a0a0;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.oeffnungszeiten-table {
  width: 100%;
  border-collapse: collapse;
}
.oeffnungszeiten-table td {
  padding: 0.65rem 0;
  border-bottom: 1px solid #2a2a2a;
  color: #d0cac9;
  font-size: 0.95rem;
}
.oeffnungszeiten-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--weiss);
}
.oeffnungszeiten-table tr.closed td { color: var(--grau); }

.kontakt-list {
  list-style: none;
  margin-bottom: 2rem;
}
.kontakt-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #2a2a2a;
  color: #d0cac9;
}
.kontakt-list a { color: #d0cac9; transition: color 0.2s; }
.kontakt-list a:hover { color: var(--rot); }
.kontakt-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

.social-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.social-links a { color: #d0cac9; transition: color 0.2s; }
.social-links a:hover { color: var(--rot); }

.map {
  width: 100%;
  height: 220px;
  border: none;
  border-radius: var(--radius);
  filter: grayscale(30%);
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: #070707;
  color: var(--grau);
  padding: 1.75rem 0;
  font-size: 0.85rem;
}

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

.footer__links {
  display: flex;
  gap: 1.5rem;
}
.footer__links a { color: var(--grau); transition: color 0.2s; }
.footer__links a:hover { color: var(--weiss); }

/* ===========================
   MOBILE
=========================== */
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }

  .nav__links { display: none; flex-direction: column; gap: 0; }
  .nav__links.open {
    display: flex;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--schwarz);
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid #222;
  }
  .nav__links.open a { padding: 0.75rem 0; border-bottom: 1px solid #222; }
  .nav__burger { display: block; }
  .nav { position: relative; }

  .hero { min-height: 70vh; }
  .hero__content {
    margin-left: 0;
    padding: 3rem 1.5rem;
  }

  .angebot-grid { grid-template-columns: 1fr 1fr; }
  .produkte-grid { grid-template-columns: 1fr; }

  .footer__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .angebot-grid { grid-template-columns: 1fr; }
}
