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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

/* Layout */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navigation mit Logo links */
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.nav-logo img {
  height: 70px;           /* Logo etwas größer */
}

.nav-right a {
  color: #fff;
  margin-left: 18px;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-right a:hover {
  color: #facc15;
}

/* HERO mit Hintergrundbild */
.hero {
  position: relative;
  border-bottom: 2px solid #7f1d1d;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 30px 20px 60px;

  /* WICHTIG: Bild liegt in img/sofia-bg.jpg */
  background-image: url("sofia-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);   /* Abdunkeln, damit Text lesbar bleibt */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-text-block {
  max-width: 650px;
}

.hero h1 {
  font-size: 3rem;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.tagline {
  font-size: 1.2rem;
  color: #e5e5e5;
  margin-bottom: 16px;
}

.opening-badge {
  display: inline-block;
  background: #b91c1c;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.hero-text {
  font-size: 1rem;
  color: #f5f5f5;
  margin-bottom: 18px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

/* Gelbe Buttons */
.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.2s ease;
}

.btn-yellow {
  background: #facc15;
  color: #111;
  border: 1px solid #facc15;
}

.btn-yellow:hover {
  background: #eab308;
  border-color: #eab308;
}

.btn-yellow-outline {
  background: transparent;
  color: #facc15;
  border: 1px solid #facc15;
}

.btn-yellow-outline:hover {
  background: #facc15;
  color: #111;
}

.top-contact {
  font-size: 0.95rem;
  color: #f5f5f5;
}

/* Speisekarte */
.menu-section {
  padding: 50px 0 60px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #facc15;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.menu-category {
  background: #101010;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
  border-left: 4px solid #b91c1c;
}

.menu-category h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
  border-bottom: 1px solid #262626;
}

.menu-item:last-child {
  border-bottom: none;
}

.name {
  font-weight: 700;
}

.desc {
  display: block;
  font-size: 0.9rem;
  color: #d4d4d4;
  margin-top: 3px;
}

.price {
  white-space: nowrap;
  font-weight: 600;
  color: #bbf7d0;
}

/* Kontakt & Rechtliches */
.contact-section,
.legal-section {
  padding: 50px 0;
}

.contact-box {
  background: #fafafa;
  color: #111;
  padding: 28px 22px;
  border-radius: 12px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-box a {
  color: #111;
  font-weight: 600;
}

.legal-box {
  background: #111;
  padding: 28px 22px;
  border-radius: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-box h2 {
  margin-bottom: 14px;
  color: #facc15;
}

.legal-box p {
  margin-bottom: 14px;
  color: #e5e5e5;
}

.legal-box hr {
  border: none;
  border-top: 1px solid #262626;
  margin: 24px 0;
}

/* Footer */
footer {
  text-align: center;
  padding: 18px;
  background: #050505;
  color: #9ca3af;
  font-size: 0.85rem;
}

/* Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding-top: 70px;
  }

  .main-nav {
    margin-bottom: 20px;
  }

  .nav-right {
    display: none; /* Navigation mobil ausblenden – simpel */
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .tagline {
    font-size: 1rem;
  }

  .menu-item {
    flex-direction: column;
  }

  .price {
    margin-top: 4px;
  }
}
