/* Spezifische Stile für die Außengastronomie-Seite */
.hero {
    height: 75vh; 
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    padding: 40px 0;
}

.content h1, .content h2, .content h3 {
    margin-bottom: 20px;
}

.content h2 {
    text-align: center;
}

.content p {
    margin-bottom: 15px;
}

.content ul {
    list-style-type: none;
    padding: 0;
}

.content li {
    margin-bottom: 15px;
}

.container { /* Update 3: Added container class */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.opening-hours-banner {
    background-color: #3b5c71;
    color: #fffbf0;
    padding: 15px 0;
    text-align: center;
}

.opening-hours-banner p {
    margin: 0;
    font-size: 1.1em;
}

.opening-hours-banner p:first-child {
    margin-bottom: 5px;
}

/* Image Strip */
.image-strip{
    display: flex;
    height: auto;
    width: 100%;
    margin-top: 30px;
}

.image-strip img {
    width: 50%;
    object-fit: cover;
}

.sundowner-menu-divider {
    width: 100vw;
    height: auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 20px;

}

.sundowner-menu-divider img {
    width: 50%;
    height: auto;
    object-fit: cover;
}

.content {
    padding: 40px 0;
  }
  
  .content .container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .content h2 {
    margin-bottom: 20px;
    text-align: center;
  }
  
  .content h3 {
    margin-bottom: 20px;
  }
  
  .content p {
    margin-bottom: 15px;
  }
  
  .menu-section-heading {
    color: #3b5c71;
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: center;
  }

.menu-heading {
    text-decoration: underline;
  }

.menu-list {
    list-style-type: none;
    padding: 0;
    text-align: center;
  }
  
  .menu-list li {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
  }
  
  .dish-name {
    flex: 1;
  }

  .dish-price {
    color: #3b5c71;
    margin-left: 10px;
  }

@media (max-width: 768px) {
.image-strip{
    flex-direction: column;
}

.image-strip img {
    width: 100%;
}
}

@media (min-width: 1536px) {
    .sundowner-menu-divider {
        width: 1536px;
    
        
    }
    .sundowner-menu-divider img {
        width: 768px;
    }
    .full-width-image-1 {
        border-top-left-radius: 40px;
        border-bottom-left-radius: 40px;
    }
    .full-width-image-2 {
        border-top-right-radius: 40px;
        border-bottom-right-radius: 40px;
    }
}