
body {
	 height: 100%;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
    color: #333;

	display: flex;
    flex-direction: column;

}

header {
	position:fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f5f5f5;
    border-bottom: 3px solid #d40000;
    padding: 10px 20px;
	
position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

}
header img {
    height: 50px;
}
nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
	padding-right:35px;
}
nav a:hover {
    color: #d40000;
}
@media (max-width: 600px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    nav a {
        margin: 10px 0;
    }
}


footer {
    text-align: center;
    padding: 15px;
    background-color: #f5f5f5;
    border-top: 2px solid #d40000;
    font-size: 14px;
    color: #333;
	
 position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

}


.main-content {
	 position: relative;
    max-width: 1000px; /* Begrenzte Breite für zentrierte Darstellung */
    margin: 0 auto; /* Zentriert die Blöcke */
    padding: 30px; /* Mehr Abstand vom Rand */
	
  flex: 1;
    margin-top: 80px;   /* Platz für Header */
    margin-bottom: 60px; /* Platz für Footer */
    overflow-y: auto;
	 box-sizing: border-box;

}

.content-block {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 50px;
}

.content-block img {
    width: 280px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
}

.content-block .text {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column; /* Überschrift immer oben */
    justify-content: flex-start;
}

.content-block.reverse {
    flex-direction: row-reverse; /* Bild rechts */
}

.content-block h2 {
    color: #d40000;
    margin-top: 3px;
    margin-bottom: 15px;
    font-size: 24px;
}

.checklist {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.checklist li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.checklist li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #888;
    font-weight: bold;
    font-size: 16px;
}


.plain-list {
    list-style: none; /* Entfernt Standardpunkte */
    padding: 0;
    margin: 10px 0;
}

.plain-list li {
    padding-left: 0; /* Kein Platz für Haken */
    margin-bottom: 8px;
}

.plain-list li::before {
    content: ""; /* Kein Symbol */
}


.impressum-content {
    max-width: 800px; /* Begrenzte Breite für bessere Lesbarkeit */
    margin: 0 auto; /* Zentriert den Block */
    padding: 20px;
}

.impressum-content h2 {
    color: #d40000;
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 22px;
}

.impressum-content p,
.impressum-content li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.impressum-content ul {
    list-style: none; /* Keine Punkte oder Haken */
    padding: 0;
    margin: 0;
}

@media (max-width: 768px) {
    .content-block,
    .content-block.reverse {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .content-block img {
        width: 100%;
        max-width: 400px;
    }
	 .impressum-content {
        padding: 15px;
    }
    .impressum-content h2 {
        font-size: 20px;
    }
    .impressum-content p,
    .impressum-content li {
        font-size: 15px;
    }
	.image-gallery {
        flex-direction: column;
        align-items: center;
    }
    .image-gallery img {
        width: 90%;
    }
}


.image-gallery {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}
.image-gallery img {
    width: 300px;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.image-gallery img:hover {
    transform: scale(1.05);
}
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}
.lightbox.show {
    display: flex;
}








