body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
}

/* Header */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #d49f47; /* Hintergrundfarbe */
    z-index: 1000;
    height: 100px; /* Höhe des fixierten Balkens */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%; /* Fülle die gesamte Höhe des fixierten Balkens */
    padding: 0 20px;
}

.left, .center, .right {
    display: flex;
    align-items: center;
}

.left {
    justify-content: flex-start;
    padding-left: 10px; /* Abstand von 10px zum linken Bildschirmrand */
}

.center {
    justify-content: center;
    flex-grow: 1;
}

.right {
    justify-content: flex-end;
    padding-right: 10px; /* Abstand von 10px zum rechten Bildschirmrand */
}

#logo {
    height: 80px; /* Höhe des Logos */
    width: auto;
}

.balken {
    width: 100%;
    height: 7px; /* Höhe der Trennlinie */
    background-color: rgba(212, 159, 71, 0.5); /* Farbe der Trennlinie mit 50% Deckkraft */
}

/* Sprachauswahl */
#language-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    left: -10px; /* Verschiebe die Flagge 10px weiter nach links */
}

#current-flag {
    width: 40px;
    height: auto;
}


/* Sprachauswahl (Language Selector) - Standard für mobile Geräte */
#language-selector {
    position: absolute;
    top: 100px; /* Direkt unterhalb des Headers */
    left: 0px;
    width: 150px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 10;
}


#language-selector.visible {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-container {
    max-height: 180px;
    overflow-y: auto;
    padding: 10px 0;
    width: 100%;
}

.lang-button {
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s;
    color: darkgray; /* Schriftfarbe dunkelgrau */
}

.lang-button img {
    width: 40px;
    height: auto;
}

.lang-button:hover {
    background-color: #f0f0f0;
}

.scroll-arrow {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    padding: 5px;
}

.scroll-arrow:disabled {
    cursor: default;
    color: #ccc;
}

/* Hauptinhalt */
main {
    padding: 20px;
    font-size: 16px;
    margin-top: 100px; /* Platz für den fixierten Header */
}

#menu-container {
    display: inline-block;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

/* Bereichsüberschriften */
.section-header {
    font-weight: bold;
    font-size: 24px;
    margin-top: 30px;
}

/* Menü-Elemente */
.menu-item {
    margin-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}

.menu-item h3 {
    font-weight: bold;
    margin-bottom: 5px;
}

.menu-item p {
    margin: 5px 0;
}

.menu-item .price {
    font-weight: bold;
    margin-top: 5px;
}

/* Formatierung für eingebettete Links und Bilder */
.menu-item img {
    max-width: 100%; /* Bilder werden in den Text eingefügt und skalieren responsiv */
    height: auto;
    margin-top: 10px;
}

.menu-item a {
    color: #d49f47;
    text-decoration: underline;
}

.menu-item a:hover {
    text-decoration: none;
}

/* Nav-Icon */
.nav-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Gleichmäßiger Abstand zwischen den Balken */
    width: 30px; /* Breite des Icons */
    height: 24px; /* Höhe des Icons */
}

.nav-icon .bar1, .nav-icon .bar2, .nav-icon .bar3 {
    width: 100%;
    height: 4px;
    background-color: black;
    border-radius: 2px; /* Ecken mit 2px Radius abrunden */
}

/* Nav-Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -250px; /* Menü ist versteckt */
    width: 250px;
    height: 100%;
    background-color: white;
    border-left: 1px solid #ccc;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: right 0.5s ease-in-out;
    overflow-y: auto; /* Scrollen innerhalb des Menüs */
}

.nav-menu.visible {
    right: 10px; /* Menü sichtbar und 10px vom rechten Bildschirmrand */
}

.nav-menu.hidden {
    right: -250px; /* Menü wieder versteckt */
}

.nav-close {
    background: none;
    border: none;
    font-size: 24px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

/* Liste der Menüeinträge */
.nav-menu ul {
    list-style: none;
    padding: 10px;
    margin: 60px 0 0;
}

.nav-menu ul li {
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
}

.nav-menu ul li:last-child {
    border-bottom: none;
}

.nav-menu ul li a {
    text-decoration: none;
    color: black;
    display: block;
}

/* Verhindere das Scrollen des Hauptinhalts, wenn das Menü geöffnet ist */
body.menu-open {
    overflow: hidden;
}

/* Mobilansicht */
@media (max-width: 600px) {
    #language-toggle {
        display: block;
    }

    #language-selector {
        width: 100%;
        max-width: none;
        top: 100px; /* Direkt unterhalb des Headers */
        left: 0;
        transform: none;
        border-radius: 0;
		transition: all 0.5s ease-in-out; /* 0.5s Übergangseffekt für das Ein- und Ausblenden */
    }

    .lang-button {
        justify-content: space-between;
        padding: 10px 15px;
    }

    .header-container {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Sprachauswahl auf Desktop-PC und Tablets - 100px Breite */
@media (min-width: 768px) {
    #language-selector {
        width: 300px; /* Breite des Sprachauswahl-Menüs auf Desktop und Tablet */
    }
}
