

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
	padding: 15px;
}

.gallery-item {
    cursor: pointer;
    border-radius: 5px;
	padding: 5px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: 0.3s ease;
    border-radius: 5px;
}

.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px 8px rgba(255, 140, 0, 0.8);
    border-radius: 2px;
}
/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox-img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 5px;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 45px;
    color: white;
    cursor: pointer;
}

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    font-size: 40px;
    padding: 10px 15px;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.2s;
}

.nav:hover {
    background: rgba(255,255,255,0.5);
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}







