body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #f9f4ef;
  color: #333;
  background-image: url('img/holz-textur.jpg');
  background-size: cover;
  background-attachment: fixed;
}

header {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 20px 20px 10px;
  padding-top: 20px; /* mehr Abstand oben */
  text-align: center;
  position: relative;
}

header .subtitle {
  margin-top: 5px;
  font-size: 1.1em;
  font-style: italic;
  color: #f0e6d2;
}

.logo {
  position: absolute;
  top: 15px;
  left: 15px;
  height: 120px;
}

header h1 {
  margin: 0;
  font-size: 2.8em;
  font-weight: bold;
}

nav {
  margin-top: 15px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav ul li {
  margin: 10px;
}

nav ul li a {
  text-decoration: none;
  background-color: #8b5e3c;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  font-family: 'Georgia', serif;
  transition: background-color 0.3s ease;
  font-size: 1.1em;
}

nav ul li a:hover {
  background-color: #a9744f;
}

main {
  max-width: 960px;
  margin: 30px auto;
  background-color: rgba(255, 255, 255, 0.92);
  padding: 20px;
  border-radius: 8px;
}

footer {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}

/* Info-Kacheln */
.info-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.info-box {
  background-color: #fff;
  border: 2px solid #8b5e3c;
  padding: 20px;
  border-radius: 6px;
  width: 250px;
  text-align: center;
  font-weight: bold;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
}

/* Hamburger-Menü Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2000;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  backdrop-filter: blur(5px);
}

.menu-toggle div {
  width: 35px;
  height: 5px;
  background-color: white;
  margin: 5px 0;
  border-radius: 2px;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.95);
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1500;
    padding: 10px 0;
  }

  nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  header h1 {
    font-size: 1.8em;
  }

  .logo {
    height: 50px;
  }
}

/* Speisekarte Styles */
main {
  max-width: 960px;
  margin: 2rem auto;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 1.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

main h1 {
  text-align: center;
  margin-bottom: 2rem;
  font-family: 'Georgia', serif;
}

.menu-kategorie {
  margin-bottom: 2rem;
}

.menu-kategorie h2 {
  border-bottom: 2px solid #8b5e3c;
  padding-bottom: 0.3rem;
  margin-bottom: 1rem;
  font-family: 'Georgia', serif;
  color: #6a4b2a;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px dotted #ccc;
  font-family: 'Georgia', serif;
}

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

.menu-name {
  font-weight: bold;
  color: #8b5e3c;
}

.menu-beschreibung {
  flex: 1;
  margin: 0 1rem;
  color: #555;
  font-style: italic;
}

.menu-preis {
  min-width: 80px;
  text-align: right;
  font-weight: bold;
  color: #6a4b2a;
}

@media (max-width: 768px) {
  .menu-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .menu-beschreibung {
    margin: 0.3rem 0;
  }
  .menu-preis {
    text-align: left;
    min-width: auto;
  }
}


.menu-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.menu-kategorie {
  margin-bottom: 40px;
}

.menu-kategorie h2 {
  font-size: 1.4em;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  margin-bottom: 15px;
  color: #333;
}

.menu-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5em;
  gap: 15px;
}

.menu-item-bild {
  width: 100px;
  height: 75px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 0 4px rgba(0,0,0,0.2);
}

.menu-item-text {
  flex: 1;
}

.menu-name {
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 4px;
}

.menu-beschreibung {
  color: #666;
  font-size: 0.95em;
}

.menu-preis {
  margin-top: 6px;
  font-style: italic;
  color: #333;
}





