/* styles.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
}

.gallery-item {
    position: relative;
    flex: 0 0 30%;
    margin: 1%;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.5s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10;
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

.lightbox-toggle {
    display: none;
}

.lightbox-toggle:checked + .gallery-item ~ .lightbox {
    display: none;
}

.lightbox-toggle:checked + .gallery-item ~ .lightbox#<?php echo $id; ?> {
    display: flex;
}

@keyframes zoomIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}
