/**
 * US Roofing Direct - Gallery Styles
 */

/* Gallery Page Styles */
.gallery-section {
    padding: 120px 0 80px;
    background-color: var(--light-gray);
}

.gallery-title {
    margin-bottom: 50px;
}

.gallery-filters {
    margin-bottom: 30px;
    text-align: center;
}

.gallery-filters .btn {
    margin: 5px;
    border-radius: 30px;
    padding: 8px 20px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.gallery-filters .btn.active {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item {
    margin-bottom: 30px;
    padding: 10px;
}

.gallery-item-inner {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item-inner:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item-inner:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h4 {
    color: white;
    margin-bottom: 5px;
    font-size: 18px;
}

.gallery-caption p {
    margin-bottom: 0;
    font-size: 14px;
    opacity: 0.8;
}

/* Lightbox Styles */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 80vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    border: 5px solid white;
    border-radius: 5px;
}

.lightbox-caption {
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 18px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .gallery-item img {
        height: 220px;
    }
    
    .gallery-caption {
        padding: 10px;
    }
    
    .gallery-caption h4 {
        font-size: 16px;
    }
}