/* Gallery Filter Buttons */
.filter-buttons {
    margin-bottom: 30px;
}

.filter-btn {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    background-color: #fff;
    color: #252525;
    padding: 0.8em 1.2em;
    border-radius: 3px;
    border: 1px solid #e7e7e7;
    display: inline-block;
    transition: all ease .238s;
    margin: 5px 2px;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 13px;
    white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #ffc925;
    color: #fff;
    border-color: #ffc925;
    outline: 0;
}

/* Gallery Items for Lightbox2 */
.gallery-item {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.gallery-item-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item-wrapper a {
    display: block;
    text-decoration: none;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 201, 37, 0.9), rgba(37, 37, 37, 0.9));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.gallery-overlay-content h5 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.gallery-overlay-content p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* Load More Button Container */
.load-more-container {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 50px;
}

/* Custom Lightbox2 Styles - Minimal overrides to preserve functionality */
.lightbox .lb-image {
    border-radius: 8px;
}

/* Caption styling */
.lightbox .lb-details .lb-caption {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    text-align: center;
}

.lightbox .lb-details .lb-number {
    color: rgba(255, 255, 255, 0.8);
}

/* Container styling */
.lightbox .lb-container {
    background: rgba(0, 0, 0, 0.9);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .filter-btn {
        font-size: 11px;
        padding: 0.6em 1em;
        margin: 3px 1px;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .gallery-overlay-content h5 {
        font-size: 16px;
    }
    
    .gallery-overlay-content p {
        font-size: 12px;
    }
}
