html {
    background-image: url("./pics/aussen.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
}
button {
    width: fit-content;
    height: fit-content;
}
header {
    padding: 20px;
    text-align: center;
}

    header h1 {
        margin: 0;
        font-size: 2.5em;
    }

.call {
    background-color: #e3b263;
    color: #000;
    padding: 20px;
    text-align: center;
    font-weight: bold;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 2px solid #e3b263;
}
.tab {
    padding: 15px 25px;
    cursor: pointer;
    color: #000;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.75);
}
    .tab:hover {
        padding: 15px 25px;
        cursor: pointer;
        color: #e3b263;
        font-weight: bold;
        background: rgba(255, 255, 255, 1);
    }

    .tab.active {
        background-color: #e3b263;
        color: #FFF;
    }

.container {
    background: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
}

.menu-section {
    display: none;
}

    .menu-section.active {
        display: block;
    }

.menu-item {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    border-bottom: solid #e3b263;
}

.menu-item-name {
    font-weight: bold;
}
.menu-item-div {
    display: flex;
    flex-direction: column;
}

.menu-item-price {
    font-weight: bold;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}
    .modal-overlay.active {
        display: flex;
    }

.modal {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.2rem;
    padding: 2rem;
    width: fit-content;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    position: relative;
    animation: fadeIn 0.3s ease;
}
footer {
    width: 100%;
    background: rgba(255, 255, 255, 0.75);
    color: #000;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    border-top: 2px solid #e3b263;
}
