/* Grundlayout */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #f5f5f5;
    color: #333;
}

/* Header */
header {
    background: #2e6f40;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    margin-top: 70px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    background: #e8e8e8;
    padding: 0.8rem;
    border-bottom: 1px solid #ccc;
    z-index: 9999;
}

nav a {
    text-decoration: none;
    color: #2e6f40;
    font-weight: bold;
}

/* Inhalt */
main {
    padding: 1rem;
    margin-top: 70px; /* Höhe des Menüs ausgleichen */
}

section {
    scroll-margin-top: 60px; /* Höhe des Menüs + etwas Abstand */
}

/* Fotos */
.gallery .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.gallery img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background: #ddd;
    margin-top: 2rem;
}

/* Mobile Optimierung */
@media (max-width: 600px) {
    header h1 {
        font-size: 1.6rem;
    }
}
