/* Grundlayout für Galerie-Detailseite */
body {
    background: #f3f2f0;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #3f4f5d;
    margin: 0;
    padding: 0;
}

.galerie-detail {
    max-width: 900px;
    margin: 40px auto 40px auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(63,79,93,0.10);
    padding: 36px 28px 32px 28px;
}

.galerie-detail h2 {
    color: #3f4f5d;
    font-size: 2rem;
    margin-bottom: 18px;
}

.galerie-detail h3 {
    color: #6c8b85;
    margin-top: 32px;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.galerie-detail ul {
    margin-left: 1.2em;
    margin-bottom: 18px;
    font-size: 1.08rem;
}

.galerie-detail li {
    margin-bottom: 4px;
}

.galerie-detail p {
    margin-bottom: 16px;
    font-size: 1.08rem;
}

.galerie-bilder {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 24px;
    justify-content: center; /* Bilder mittig ausrichten */
}

.galerie-bilder img {
    width: 300px;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(63,79,93,0.10);
    background: #fff;
    transition: transform 0.2s;
}
.galerie-bilder img:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 24px rgba(63,79,93,0.18);
}

a {
    color: #3f4f5d;
    text-decoration: underline;
    transition: color 0.2s;
}
a:hover {
    color: #6c8b85;
    text-decoration: none;
}

/* Responsive Anpassung */
@media (max-width: 600px) {
    .galerie-detail {
        padding: 16px 6vw 24px 6vw;
    }
    .galerie-bilder {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .galerie-bilder img {
        width: 98vw;
        max-width: 98vw;
    }
}