    body {
      margin: 0;
      font-family: 'Montserrat', Arial, sans-serif;
      background: url('../pics/background.jpg') no-repeat left center fixed;
      background-size: cover;
      min-height: 100vh;
    }
    .container {
      width: 400px;
      max-width: 80%;
      margin: 0 auto;
      padding: 32px 0 32px 0;
      background: rgba(255,255,255,0);
    }
    .agb {
        max-width: 600px;
        margin: auto;
        padding: 15px;
        border-radius: 10px;
        background: #f9f9f9;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
	.brand {
      text-align: center;
      margin-top: 30px;
    }
    .title1 {
  font-family: 'Georgia', 'Times New Roman', 'Snell Roundhand', Times, serif;
  font-style: italic;
  font-size: 4em;
  color: #AAF0D1;                      /* Mint-Füllung */
  -webkit-text-stroke: 2px #222;       /* Schwarze Outline */
  text-stroke: 2px #222;
  font-weight: bold;
  letter-spacing: 0.03em;
  display: block;	
    }
    .title2 {
  font-family: 'Georgia', 'Times New Roman', 'Snell Roundhand', Times, serif;
  font-style: italic;
  font-size: 2.2em;
  color: #AAF0D1;                      /* Mint-Füllung */
  -webkit-text-stroke: 1.2px #222;     /* Schwarze Outline */
  text-stroke: 1.2px #222;
  font-weight: bold;
  letter-spacing: 0.01em;
  display: block;
    }
    .subtitle {
      text-align: left;
      font-size: 2em;
      color: #7a4a2f;
      font-family: 'Montserrat', Arial, sans-serif;
      margin-top: 18px;
      margin-bottom: 4px;
      font-weight: 700;
    }
    .badge {
      background: #f5eee6;
      color: #5d4534;
      padding: 6px 24px;
      display: inline-block;
      border-radius: 20px;
      font-weight: bold;
      margin-bottom: 22px;
      font-size: 1.2em;
      letter-spacing: 2px;
    }
    .menu {
      display: flex;
      flex-direction: column;
      gap: 24px;
      margin-top: 18px;
      margin-bottom: 26px;
    }
    .card {
      background: rgba(255,255,255,0.8);
      border-radius: 24px;
      box-shadow: 0 0 12px rgba(64,32,16,0.14);
      padding: 18px 24px;
	  border: 5px solid #AAF0D1;       /* Mint-Farbiger Rahmen */
      border-radius: 18px;             /* Gleichmäßige Rundung wie im Bild */
      box-shadow: 0 2px 16px rgb(0 0 0 / 6%);
      display: flex;
      align-items: center;
    }
    .card-image {
      height: 90px;
      object-fit: cover;
      border-radius: 14px;
      box-shadow: 0 0 7px rgba(0,0,0,0.08);
      margin-right: 26px;
      background: #eee;
    }
    .card-content {
      flex: 1;
    }
    .card-title {
      font-size: 1.2em;
      font-weight: bold;
      color: #694238;
    }
    .card-desc {
      font-size: 1em;
      color: #000000;
      font-weight: 400;
      margin-bottom: 6px;
      margin-top: 2px;
      letter-spacing: 0.03em;
    }
    .card-price {
      font-size: 1.1em;
      color: #3a231b;
      font-weight: bold;
      margin-top: 6px;
    }

	  
	  /* Allgemein für alle Images */

/* Hauptcontainer für das Menu */
.menu-container {
  display: flex;
  flex-direction: row;
  gap: 2em;
  flex-wrap: wrap;
  justify-content: center;
}

/* Hauptcontainer für AGB */
.agb-container {
  display: flex;
  flex-direction: row;
  gap: 2em;
  flex-wrap: wrap;
  justify-content: center;
}

/* Desktop: Standard */
@media screen and (min-width: 1000px) {
  .menu-container {
    flex-direction: row;
    gap: 2em;
  }
  .menu-item {
    width: 300px;
    margin: 1em;
  }
}

/* Mobile Portrait */
@media screen and (max-width: 999px) and (orientation: portrait) {
  .menu-container {
    flex-direction: column;
    align-items: center;
  }
  .menu-item {
    width: 90vw;
    margin-bottom: 1em;
  }
}

/* Mobile Landscape */
@media screen and (max-width: 999px) and (orientation: landscape) {
  .menu-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .menu-item {
    width: 40vw;
    margin: 1vw;
  }
}
    /* Top-Menü (Header) */
 	      .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 60px;
      background: rgba(255,255,255,0.9);        /* Mint-Farbiger Rahmen */
      display: flex;
      align-items: center;
      z-index: 1000;
      box-shadow: 0 2px 12px #0001;
    }
    /* Bistro-Name exakt zentriert */
    .nav-center {
      margin: 0 auto;
      font-size: 2em;
      font-family: "Georgia", "Snell Roundhand", cursive;
      color: #954D15;
      font-weight: bold;
      letter-spacing: 0.03em;
      text-align: center;
      flex: 1 1 0%;
    }
    /* Bistro-Name exakt zentriert */
    .nav-center-address {
      margin: 0 auto;
      font-size: 1em;
      font-family: "Georgia", "Snell Roundhand", cursive;
      color: black;
      font-weight: bold;
      letter-spacing: 0.03em;
      text-align: center;
      flex: 1 1 0%;
    }
    /* Burger-Menü rechts */
    .nav-right {
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      cursor: pointer;
      margin-right: 10px;
      flex-shrink: 0;
    }
    /* Menü dropdown */
    .menu-dropdown {
      display: none;
      position: fixed;
      top: 60px;
      right: 0;
      width: 230px;
      background: rgba(255,255,255,0.9);        /* Mint-Farbiger Rahmen */
      border-bottom-left-radius: 16px;
      box-shadow: -2px 8px 16px #0002;
      z-index: 1001;
    }
    .menu-dropdown.visible {
      display: block;
    }
    .menu-dropdown ul {
      list-style: none;
      margin: 0;
      padding: 16px 0;
    }
    .menu-dropdown li {
      border-bottom: 1px solid #eee;
    }
    .menu-dropdown li:last-child {
      border-bottom: none;
    }
    .menu-dropdown a {
      display: block;
      padding: 10px 18px;
      color: #222;
      text-decoration: none;
      font-size: 1.15em;
      transition: background 0.15s;
    }
    .menu-dropdown a:hover {
      background: rgba(255,255,255,0.13);
      color: #954D15;
    }
    /* Responsive für kleine Geräte */
    @media (max-width: 700px) {
      .nav-center { font-size: 1.2em; }
      .menu-dropdown { width: 70vw; }
    }
    /* Inhalt unter dem Menü */
    .content {
      margin-top: 80px; /* Platz für das fixierte Menü oben */
      padding: 16px;
    }
	  
	  .nav-left {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 10px;
  flex-shrink: 0;
}

.nav-home {
  display: flex;
  align-items: center;
  height: 36px;
  width: 36px;
}

.nav-home svg {
  height: 36px;
  width: 36px;
  display: block;
}

img.unstyled {
  all: unset;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 10px 20px;
  background-color: #fff;      /* anpassen */
  color: #111;                 /* anpassen */
  font-size: 10px;
}

.footer-left {
  text-align: left;
  font-size: 10px;
}

.footer-center {
  flex: 1;
  text-align: center;
  font-size: 10px;
}

.footer-right {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  font-size: 10px;
}

.footer-link {
  color: inherit;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.social-icon img {
  display: block;
}

/* Responsive: untereinander bei kleiner Breite */
@media (max-width: 600px) {
  .footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    width: 200px;
    text-align: center;
    justify-content: center;
  }

  .footer-right {
    justify-content: center;
  }
}

/* Footer-Icons nebeneinander */
.footer-right .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;          /* überschreibt globales margin */
}

.footer-right .social-icon img {
  display: block;     /* ok innerhalb des flex-Containers */
  margin: 0;          /* kein auto-margin -> bleibt in einer Zeile */
}
