body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #eae4dc;
  color: #333;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* HEADER */
.header {
  background: #f2ebe3;
  border-radius: 15px;
  margin: 20px;
  padding: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 100px;        /* feste Größe */
  height: 100px;
  object-fit: cover;  /* Bild passt in den Kreis */
  border-radius: 50%; /* optional, rund */
}

.nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #555;
}

/* HERO */
.hero {
  margin: 20px;
  padding: 60px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #c8c9e9, #e6d5b8);
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
}

.hero p {
  margin: 15px 0;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

/* BUTTONS */
.btn {
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  color: black;
  cursor: pointer;
}

.orange {
  background: #c7baac;
}

.green {
  background: #a6b8a4;
}

/* CARDS */
.cards {
  display: flex;
  gap: 20px;
}

.card {
  flex: 1 1 300px; /* flexibel, mindestens 300px */
  padding: 20px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  box-sizing: border-box;
}

/* MENU */
.menu {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.menu-left {
  flex: 1;
  display: flex;
  gap: 20px;
  background: #f5efe8;
  padding: 20px;
  border-radius: 15px;
}

.image-box {
  width: 120px;
  height: 120px;
  background: #dbd5bf;
  border-radius: 10px;
}

.text-box h3 {
  margin-top: 0;
}

.menu-right {
  flex: 1;
}

/* Speisekarte Accordion */
.menu-category {
  margin-bottom: 15px;
}

.menu-toggle {
  background: #c3cddb;
  color: #fff;
  padding: 10px 15px;
  cursor: pointer;
  margin: 0;
  border-radius: 5px;
}

.menu-items {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f5efe8;
  margin-top: 5px;
  border-radius: 5px;
}

.menu-items.active {
  max-height: 1000px; /* groß genug, um alles anzuzeigen */
}

.menu-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 15px;
  border-bottom: 1px solid #ddd;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-subitems {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f0e6d6;
  margin: 5px 0 10px 0;
  border-radius: 5px;
  padding: 0 10px;
}

.menu-subitems.active {
  max-height: 500px; /* groß genug für alle Items */
}

.menu-subtoggle {
  background: #dbd9db;
  color: #000000;
  padding: 8px 12px;
  cursor: pointer;
  margin: 5px 0;
  border-radius: 5px;
  font-weight: normal;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}

/* Google Maps Box */
.map {
  border-radius: 15px;
  overflow: hidden;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-image: url('karte_bielefeld.PNG'); /* Dein Bild */
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.map a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

.map a span {
  margin-top: 150px;
  background: rgba(0,0,0,0.4);
  padding: 10px 15px;
  border-radius: 10px;
  font-weight: bold;
  text-align: center;
  font-size: 1.2rem;
}

.map a:hover span {
  background: rgba(0,0,0,0.6);
}

/* Galerie-Box mit Hintergrundbild und Zoom */
.gallery-item {
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  height: 150px;
  background-size: 120%;          /* Zoom */
  background-position: center;     /* zentrieren */
  background-repeat: no-repeat;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  position: relative;
}

/* Textoverlay für Lesbarkeit */
.gallery-item p {
  background: rgba(0,0,0,0.4);
  padding: 5px 10px;
  border-radius: 5px;
  display: inline-block;
}

/* Spezielle Hintergrundbilder */
.gallery-restaurant { background-image: url('restaurant_innen.jpeg'); }
.gallery-aussen     { background-image: url('außenbereich.jpeg'); }
.gallery-vorladen   { background-image: url('vor_dem_laden.jpeg'); }
.gallery-speisen    { background-image: url('speisen_drinks.jpeg'); }
.gallery-events     { background-image: url('events_feiern.jpeg'); }

/* Buissness und Private Catering */

/* Services-Section zentriert */
.services {
  margin: 40px auto;
  text-align: center;
  max-width: 1100px;
  padding: 0 20px;
}

.services h2 {
  color: #000000;
  margin-bottom: 30px;
  font-size: 2rem;
}

.services h4 {
  color: #000000;
  margin-bottom: 20px;
  font-size: 1rem;
}

/* Grid für Boxen */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center; /* Boxen zentrieren */
  align-items: start;  /* Alle Boxen gleiche Höhe */
}

/* Service-Boxen (Kombination Card + Service) */
.service-card {
  width: 100%;
  max-width: 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.service-card h3 {
  margin: 10px 0 5px;
  color: #000000;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Hover-Effekt */
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.2);
}

/* Mobile Anpassung */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* CONTACT */
.contact {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form input {
  padding: 10px;
  border-radius: 10px;
  border: none;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .cards,
  .menu,
  .contact {
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    width: 80px;
    height: 80px;
  }
}