/* PhotoSwipe Custom Styles */

/* Gallery layout */
.pswp-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 15px;
    margin: 30px 0;
}

/* Gallery items */
.pswp-gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 1/1;
}

.pswp-gallery__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.pswp-gallery__item a {
    display: block;
    height: 100%;
    width: 100%;
    cursor: pointer;
}

.pswp-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pswp-gallery__item:hover img {
    transform: scale(1.05);
}

/* Caption styling */
.pswp-gallery__item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pswp-gallery__item:hover .pswp-gallery__item-caption {
    opacity: 1;
}

/* PhotoSwipe lightbox customizations */
.pswp__img {
    object-fit: contain !important;
}

.pswp__counter {
    font-size: 16px;
    color: #fff;
    opacity: 0.85;
}

.pswp__caption__center {
    max-width: 800px;
    text-align: center;
    font-size: 16px;
    padding: 15px;
    color: #fff;
}

.pswp__button--arrow--left,
.pswp__button--arrow--right {
    background-color: rgba(0, 0, 0, 0.3) !important;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.pswp__top-bar {
    background-color: rgba(0, 0, 0, 0.3) !important;
}

/* Section styling */
.photoswipe-section {
    padding: 50px 0;
    background-color: #f9f9f9;
    margin-bottom: 50px;
}

.photoswipe-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.photoswipe-title {
    text-align: center;
    margin-bottom: 30px;
}

.photoswipe-title span {
    color: #F74F22;
    font-family: 'Edu AU VIC WA NT Hand', system-ui;
    font-size: 20px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.photoswipe-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #573e11;
    margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .pswp-gallery {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 767px) {
    .pswp-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        grid-gap: 10px;
    }

    .pswp-gallery__item-caption {
        padding: 8px;
        font-size: 12px;
    }
}