html, body {
  margin: 0; padding: 0; height: 100%;
  font-family: "Heebo",sans-serif;
  background: #f0f0f0;
  overflow: hidden;
}

header {
  height: 10vh;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center; 
  padding-left: 1rem;
}

#logo {
  height: 80%;
}

main#slideshow {
  height: 90vh;
  position: relative;
  overflow: hidden;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide {
  width: 90%;
  height: 95%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
  position: absolute;
  top: 1%;
  left: 5%;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide img {
  /* max-height: 80%; */
  max-height: 100%;
  max-width: 40%;
  object-fit: contain;
}

.slide .text {
  padding: 1rem;
  max-width: 50%;
}

.slide-content {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}

/* Bild links, Text rechts */
.slide-content.left {
  flex-direction: row;
}

.slide-content.left img {
  order: 0;
  flex-shrink: 0;
  width: 40%; /* Bild nimmt 40% Breite */
  object-fit: cover;
  align-self: stretch; /* Bild füllt Container in der Höhe */
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* Text rechts, zentriert */
.slide-content.left .text {
  order: 1;
  flex-grow: 1;
  text-align: center;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* Bild rechts, Text links */
.slide-content.right {
  flex-direction: row-reverse;
}

.slide-content.right img {
  order: 0;
  flex-shrink: 0;
  width: 40%;
  object-fit: cover;
  align-self: stretch;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.slide-content.right .text {
  order: 1;
  flex-grow: 1;
  text-align: center;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.slide-content.center {
  justify-content: center;
}

.slide-content.center img {
  border-radius: 8px;
  max-width: 100%
}

.slide-content img {
  padding: 1px;
}

.heading-center {
  background-color: black;
  color: white;
  width: 80%;
  margin: 1rem auto 0 auto;
  padding: 0.5rem 1rem;
  border-radius: 0;
  text-align: center;
  font-weight: normal;
  font-size: 1.5rem;
}

.food-items {
  display: flex;
  width: 80%;
  margin: 0.5rem auto 1rem auto;
  gap: 1rem;
  box-sizing: border-box;
}

.food-item {
  flex: 1 1 50%;
  font-size: 0.8rem; /* etwas kleinere Schrift */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.food-item h4 {
  margin: 0 0 0.5rem 0;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.food-item h4 .icon {
  font-size: 1.2rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.food-item p {
  margin: 0.25rem 0;
}

.price {
  font-weight: bold;
  margin-top: auto; /* Preis unten ausrichten */
  font-size: 1rem;
}
