* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Header und Navigation */
header {
    background-color: #560505; /* Dunkel weinrot */
    padding: 20px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff; /* Weiß */
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff; /* Weiß */
}

.nav-links a.active {
    font-weight: bold;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #ffffff; /* Weiß */
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero-Bereich */
.hero {
    width: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Hauptinhalt */
main {
    padding: 40px 0;
}

h1 {
    margin-bottom: 20px;
}

/* Bildergitter auf der Startseite */
.image-grid {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.image-item {
    flex-basis: 30%;
    text-align: center;
}

.image-item img,
.about-image,
.team-member img,
.map-image {
    width: 100%;
    height: auto;
    border-radius: 25px;
}

.image-item img {
    width: 100%;
    height: auto;
}

/* Menü-Karte */
.menu-section {
    margin-bottom: 40px;
}

.menu-item {
    margin-bottom: 20px;
}

.menu-item h3 {
    margin-bottom: 5px;
}

.price {
    font-weight: bold;
}

/* Über uns Seite */
.about-content {
    display: flex;
    margin-bottom: 40px;
}

.about-image {
    flex-basis: 40%;
    margin-right: 40px;
}

.about-text {
    flex-basis: 60%;
}

.team-grid {
    display: flex;
    justify-content: space-between;
}

.team-member {
    flex-basis: 30%;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

/* Kontaktseite */
.contact-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.contact-info > div {
    flex-basis: 30%;
}

.map-image {
    width: 100%;
    height: auto;
}

/* Footer */
footer {
    background-color: #f8f8f8;
    text-align: center;
    padding: 20px 0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: #f8f8f8;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform;
        transition: transform 0.5s ease-in;
    }

    .nav-links li {
        opacity: 0;
    }

    .burger {
        display: block;
    }

    .nav-active {
        transform: translateX(0%);
    }

    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0px);
        }
    }

    .image-grid, .about-content, .team-grid, .contact-info {
        flex-direction: column;
    }

    .image-item, .about-image, .about-text, .team-member, .contact-info > div {
        flex-basis: 100%;
        margin-bottom: 20px;
    }

    .about-image {
        margin-right: 0;
    }

    .nav-links {
        background-color: #560505; /* Dunkel weinrot */
        color: #ffffff; /* Weiß */
    }

    .nav-links a {
        color: #ffffff; /* Weiß */
    }
}
