/* ========== Grundlayout für die Geschichtsseite ========== */
.geschichte-seite {
    background-color: #f9f9f9;
    padding-top: 40px;
    font-family: "Segoe UI", sans-serif;
    color: #2c3e50;
    line-height: 1.6;
}

/* Container */
.geschichte-seite .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Einleitung */
.geschichte-einleitung {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-bottom: 40px;
}

.geschichte-einleitung h1 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.geschichte-einleitung p {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0;
}

/* Geschichtsboxen */
.geschichte-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

.geschichte-box h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    border-left: 5px solid #2c3e50;
    padding-left: 12px;
    color: #2c3e50;
}

.geschichte-box p {
    margin-bottom: 12px;
    color: #444;
    font-size: 1rem;
}

/* Galerie */
.galerie-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
    justify-content: center;
}

.galerie-thumb {
    flex: 1 1 220px;
    max-width: 240px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

.galerie-thumb img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    border-radius: 4px;
}

.galerie-thumb:hover {
    transform: scale(1.03);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    background: white;
}

/* Zitat (optional) */
blockquote {
    background-color: #f1f1f1;
    padding: 15px 20px;
    border-left: 4px solid #888;
    font-style: italic;
    margin: 20px 0;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .geschichte-einleitung h1 {
        font-size: 1.8rem;
    }

    .geschichte-box h2 {
        font-size: 1.3rem;
    }

    .geschichte-box p,
    .geschichte-einleitung p {
        font-size: 0.95rem;
    }

    .galerie-thumb {
        max-width: 100%;
        flex: 1 1 100%;
    }
}
