/* Grundstile */
body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
}

header {
    background-color: white;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
    position: relative;
}

#menuButton {
    display: none;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    background-color: #f7f7f7;
    border: 1px solid #eaeaea;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    background-color: #f7f7f7;
    padding: 20px;
    box-sizing: border-box;
    border-right: 1px solid #eaeaea;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav li a {
    display: block;
    padding: 10px 0;
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

nav li a:hover {
    color: #2c8fd6;
    /* Animation bei Hover */
}

main {
    margin-left: 200px;
    padding: 20px;
}

footer {
    background-color: white;
    padding: 10px;
    text-align: center;
    border-top: 1px solid #eaeaea;
}

/* Menü bei schmalem Fenster einklappen */
@media screen and (max-width: 767px) {
    nav {
        position: fixed;
        top: 0;
        left: -200px;
        transition: left 0.3s;
    }

    nav.open {
        left: 0;
    }

    #menuButton {
        display: block;
    }

    main {
        margin-left: 0;
    }
}

/* Weitere Stile und Animationen können hier hinzugefügt werden */
/* Kontaktformular-Stile */
#contact-form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

#contact-form div {
    margin-bottom: 10px;
}

#contact-form label {
    display: block;
    margin-bottom: 5px;
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

#contact-form textarea {
    resize: vertical;
}

#contact-form input[type="submit"] {
    background-color: #2c8fd6;
    border: none;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#contact-form input[type="submit"]:hover {
    background-color: #1a6fb0;
}
