/* Photo Gallery — album/photo grid + lightbox */

.pa-gallery-grid {
    margin: 0 -10px;
}
.pa-gallery-item {
    padding: 10px;
}
.pa-gallery-thumb {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.08);
    cursor: pointer;
}
.pa-gallery-thumb img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.pa-gallery-thumb:hover img {
    transform: scale(1.08);
}
.pa-gallery-caption {
    padding: 10px 12px;
    background: #fff;
    text-align: center;
}
.pa-gallery-caption h4 {
    margin: 0;
    font-size: 15px;
    color: #222;
}

/* Lightbox overlay */
.rbey-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.92);
    text-align: center;
}
.rbey-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}
.rbey-lightbox-content {
    position: relative;
    max-width: 92vw;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.rbey-lightbox-content img {
    max-width: 92vw;
    max-height: 80vh;
    border-radius: 6px;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
}
.rbey-lightbox-caption {
    color: #f1f1f1;
    margin-top: 14px;
    font-size: 16px;
}
.rbey-lightbox-counter {
    color: #ccc;
    margin-top: 4px;
    font-size: 13px;
}
.rbey-lightbox-close,
.rbey-lightbox-prev,
.rbey-lightbox-next {
    position: fixed;
    background: rgba(46,125,50,0.85);
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 10000;
    line-height: 1;
    transition: background 0.2s ease;
}
.rbey-lightbox-close:hover,
.rbey-lightbox-prev:hover,
.rbey-lightbox-next:hover {
    background: #2E7D32;
}
.rbey-lightbox-close {
    top: 20px;
    right: 25px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 26px;
}
.rbey-lightbox-prev,
.rbey-lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
}
.rbey-lightbox-prev { left: 20px; }
.rbey-lightbox-next { right: 20px; }

@media (max-width: 767px) {
    .pa-gallery-thumb img { height: 120px; }
    .rbey-lightbox-prev, .rbey-lightbox-next {
        width: 40px; height: 40px; font-size: 16px;
    }
    .rbey-lightbox-close { width: 38px; height: 38px; font-size: 22px; top: 10px; right: 10px; }
    .rbey-lightbox-prev { left: 8px; }
    .rbey-lightbox-next { right: 8px; }
}
