/* Allgemeine Stile */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    color: #333333;
}

/* Header und Navigation */
header {
    background-color: #FFFFFF;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: center; /* Navigation und Logo zentrieren */
    align-items: center;
    position: relative;
}

.logo img {
    max-width: 200px; /* Maximale Breite des Logos */
    height: auto;
    margin-right: 100px; /* Abstand von 100px zum Menü */
}

.menu-icon {
    display: none; /* Verstecke das Burger-Icon und den Text standardmäßig */
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    align-items: center;
}

.menu-text {
    margin-left: 8px; /* Abstand zwischen Icon und Text */
    font-size: 18px; /* Textgröße passend zum Icon */
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333333;
    font-size: 18px;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #66bb6a; /* Hellgrün */
}

/* Bild über dem Startseitentext */
.header-image img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
}

/* Hauptinhalt */
main {
    padding: 20px;
    text-align: left; /* Text zentrieren */
}

/* Content-Bereich mit maximal 1000px Breite und 50px Abstand zum Rand */
.content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Kontaktbereich */
.contact-section {
    display: flex;
    align-items: center;
    margin-top: 40px;
    text-align: left;
}

.contact-photo {
    border-radius: 50%;
    margin-right: 20px;
}

.contact-info p {
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-icon {
        display: flex; /* Icon und Text nur auf mobilen Geräten anzeigen */
    }

    .logo {
        margin-right: 0; /* Abstand entfernen bei mobiler Ansicht */
    }

    .logo img {
        max-width: 150px; /* Logo verkleinern auf mobilen Geräten */
    }

    nav ul {
        flex-direction: column;
        display: none;
        width: 100%;
        text-align: center;
        background-color: rgba(255, 255, 255, 0.85); /* Hintergrund mit 85% Deckkraft */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 155px; /* Positionierung direkt unter der Navigationsleiste */
        left: 0;
        padding: 0; /* Kein zusätzliches Padding */
        border-top: 1px solid #000000;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
    }

    nav ul li a {
        font-size: 20px;
        padding: 15px 0; /* Größeres Padding für leichtere Klickbarkeit */
    }

    /* Kontaktbereich für mobile Ansicht */
    .contact-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-photo {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

/* Bild und Text nebeneinander in der Einführung */
.about-us-intro {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.about-us-photo {
    border-radius: 50%;
    margin-right: 20px;
    width: 150px; /* Größe des Bildes anpassen */
    height: 150px;
}

.about-us-intro p {
    margin: 0;
    flex: 1;
}


/* Kontaktinformationen und Kontaktformular */
.contact-info {
    margin-bottom: 40px;
}

.contact-info p {
    font-size: 18px;
    margin: 10px 0;
}

.contact-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

button[type="submit"] {
    background-color: #66bb6a; /* Hellgrün */
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
}

button[type="submit"]:hover {
    background-color: #55a555;
}


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

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    display: inline;
    margin: 0 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #66bb6a; /* Hellgrün, passend zum Design */
}

