* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-image: url('Bilder/1.jpg'); /* Hier den Pfad zum Hintergrundbild anpassen */
    background-size: cover;
    background-position: center;
    margin: 0;
    color: #333;
}

/* Container für das Menü */
.menu-container {
    width: 90%;
    max-width: 600px;
    padding: 20px;
    border: 1px solid #000;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8); /* Halbtransparenter weißer Hintergrund */
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.logo {
    width: 80px;
    height: auto;
    margin-bottom: 20px;
}

.restaurant-name {
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
}

.subtitle {
    font-size: 18px;
    color: gray;
    margin-bottom: 20px;
}

/* Menüauswahl */
.menu-selection {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.menu-selection a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    margin: 5px;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.menu-selection a:hover {
    color: #555;
}

/* Titel des Menüs */
h1 {
    font-size: 32px;
    margin-top: 20px;
    margin-bottom: 20px;
    text-decoration: underline;
}

/* Gerichte und Preise */
.dish {
    font-size: 18px;
    margin: 10px 0;
}

.separator {
    font-size: 24px;
    margin: 15px 0;
}

.price {
    font-size: 24px;
    font-weight: bold;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-selection {
        flex-wrap: wrap;
        gap: 10px;
    }

    .menu-selection a {
        font-size: 16px;
        padding: 5px;
    }

    h1 {
        font-size: 28px;
    }

    .dish {
        font-size: 16px;
    }

    .price {
        font-size: 20px;
    }
}
