body {
    background-color: #d7c9cb;
    font-family: 'Verdana, Arial', sans-serif;
    color: #000000;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.section {
    padding: 50px 20px;
    text-align: center;
}

.section h1, .section h2 {
    margin-bottom: 20px;
}

.section p {
    font-size: 18px;
    line-height: 1.6;
}

.welcome {
    background-color: #ffffff;
}

.services {
    background-color: #ffffff;
}

.service {
    padding: 20px;
    border: 1px solid #c1a0da;
    margin-bottom: 20px;
    background-color: #d7c9cb;
}

.service img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

.contact {
    background-color: #c1a0da;
    color: #ffffff;
}

.address img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* --- Galerie auf weißem Hintergrund --- */
.gallery-wrapper {
    background: #ffffff;
    padding: 40px 20px;
    margin: 40px auto;
	    text-align: center;
}

.gallery {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery img {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    background: #ffffff;
    padding: 5px;
}

.gallery img:hover {
    transform: scale(1.03);
}

/* --- Lightbox Overlay --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    cursor: pointer;
}

/* --- Lightbox Image --- */
.lightbox img {
    max-width: 90%;
    max-height: 90%;
    margin: 5% auto;
    display: block;
    border-radius: 10px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* --- Navigation Buttons --- */
.lb-nav {
    position: fixed;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.lb-btn {
    pointer-events: all;
    font-size: 50px;
    color: #ffffff;
    padding: 20px;
    cursor: pointer;
    user-select: none;
}

/* --- Close Button --- */
.lb-close {
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #ffffff;
    cursor: pointer;
    user-select: none;
}
/* Standard: Navigation & Close-Button verstecken */
.lb-nav,
.lb-close {
  display: none;
}

/* Nur anzeigen, wenn Lightbox aktiv ist */
.lightbox.active ~ .lb-nav,
.lightbox.active ~ .lb-close {
  display: block;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery {
        grid-template-columns: repeat(1, 1fr);
    }
}

.footer {
    background-color: #ffffff;
    color: #000000;
    padding: 20px;
    text-align: center;
}

.footer a {
    color: #000000;
    text-decoration: none;
}
