body {
    font-family: Arial, sans-serif;
    margin: 40px;
    background: #004411;
}

/* Titel */
h1 {
    margin-bottom: 30px;
}

/* GRID */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* CARD */
.gallery-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    cursor: pointer;
}

/* TEXTBEREICH */
.gallery-content {
    padding: 15px;
}

.gallery-content h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
}

.gallery-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.lightbox.active {
    display: flex;
}
