/* Allgemeine Stile */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

header {
    background-color: #f2f2f2;
    padding: 20px;
    text-align: center;
    position: relative;
}

h1 {
    margin: 0;
    padding-bottom: 20px;
}

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

nav ul li {
    margin-bottom: 10px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    display: block;
    padding: 10px;
}

nav ul li a:hover {
    color: #0066cc;
    background-color: #e6e6e6;
}

/* Hauptinhalt */
main {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

h2 {
    color: #333;
    margin-bottom: 15px;
}

p {
    line-height: 1.6;
}

/* Hamburger-Menü-Taste */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

/* Mobile Ansicht */
@media screen and (max-width: 800px) {
    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        background-color: #f2f2f2;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        z-index: 1000;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        padding-bottom: 10px;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        padding-left: 0;
        text-align: center;
        margin-top: 10px;
    }

    nav ul li {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Desktop Ansicht */
@media screen and (min-width: 801px) {
    nav ul {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: 0;
        margin-top: -10px;
    }

    nav ul li {
        margin-right: 20px;
    }
}

/* ========================== */
/* Fotogalerie Styles */
/* ========================== */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    padding: 10px;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.1);
}

/* ========================== */
/* Kontaktbild Styles */
/* ========================== */
.contact-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin-top: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
