body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: floralwhite;
    color: #303634;
}

header {
    background-color: #1d565e;
    padding: 1rem;
    text-align: center;
    font-family:    "Al Bayan";
}

header h1 {
    margin: 0;
    color: white;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;

}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #ff6666;
}

.submenu {
    background-color: white;
    list-style: none;
    text-decoration: none;
    color: #1d565e;
    margin: 0;
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.submenu.hidden {
    display: none;
}

.content {
    display: none;
    padding: 2rem;
}

.content.active {
    display: block;
}

.category {
    margin-bottom: 1rem;
}

.dish {
    display: flex;
    justify-content: space-between;
    max-width: 300px;
    margin: 0.5rem 0;
}

button {
    background-color: #900;
    color: white;
    border: none;
    padding: 0.3rem 0.6rem;
    cursor: pointer;
}

button:hover {
    background-color: #b00;
}

textarea,
input[type="email"] {
    display: block;
    width: 100%;
    margin-top: 1rem;
    padding: 0.5rem;
    background-color: #222;
    color: #eee;
    border: 1px solid #555;
}

footer {
    background-color: #222;
    color: #aaa;
    text-align: center;
    padding: 1rem;
}
/* Einheitliche Darstellung der Gerichte */
.dish {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    border-bottom: 1px solid #ccc;
    max-width: 100%;
    flex-wrap: wrap;
}

.dish span {
    flex: 1;
    margin-right: 1rem;
    color: #303634;
}

.dish button {
    background-color: #900;
    color: floralwhite;
    border: none;
    padding: 0.3rem 0.6rem;
    margin-left: 0.3rem;
    min-width: 30px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
}

.dish button:hover {
    background-color: #b00;
}

.category {
    background-color: #f8f8f8;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.category h2 {
    margin-top: 0;
    color: #297e8a;
}

a {
    text-decoration: none;
    color: inherit;
}
#feier-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

#feier-arrow.rotated {
    transform: rotate(180deg);
}


@media screen and (max-width: 768px) {
    nav ul, .submenu {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    .dish {
        flex-direction: column;
        align-items: flex-start;
    }
    .dish button {
        margin-top: 0.3rem;
    }
    .category {
        padding: 0.5rem;
    }
    header h1 {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    .dish span {
        font-size: 0.9rem;
    }
    .dish button {
        font-size: 0.8rem;
        padding: 0.2rem 0.4rem;
    }
    .category h2 {
        font-size: 1rem;
    }
    footer p {
        font-size: 0.8rem;
    }
}
.carousel-container {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding: 1rem;
    scroll-behavior: smooth;
    background-color: #e9f0f1;
    border-radius: 8px;
}

.carousel-track {
    display: flex;
    gap: 1rem;
}

.image-card {
    position: relative;
    display: inline-block;
    width: 250px;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex: 0 0 auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.image-card:hover {
    transform: scale(1.05);
}

.caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.5);
    color: white;
    text-align: center;
    font-size: 0.9rem;
    padding: 0.3rem;
}
.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}


footer {
    background-color: #222;
    color: #aaa;
    text-align: center;
    padding: 1rem;
}
#start {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}
.info-banner {
    background-color: #f0f5f5;
    color: #1d565e;
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    margin: 2rem auto 0;
    max-width: 800px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.info-banner h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

.info-banner p {
    font-size: 1.1rem;
    line-height: 1.6;
}



