/* Gallery Section Styles */
.gallery-section {
    padding: 80px 0;
    background-color: #000;
}

.gallery-container {
    margin: 0 -15px;
}

.gallery-item {
    padding: 15px;
}

.gallery-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-box:hover img {
    transform: scale(1.1);
}

.gallery-box:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: #f8b400;
    font-size: 2rem;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.gallery-box:hover .gallery-overlay i {
    transform: scale(1);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border: 2px solid rgba(248, 180, 0, 0.2);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-lightbox:hover {
    color: #f8b400;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    padding: 15px;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    color: #f8b400;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

/* Responsive Gallery Styles */
@media (max-width: 991px) {
    .gallery-item {
        width: 50%;
    }
    .gallery-box img {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .gallery-item {
        width: 100%;
    }
    .gallery-box img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .gallery-box img {
        height: 250px;
    }
    
    .lightbox-nav {
        font-size: 24px;
        padding: 10px;
    }
    
    .close-lightbox {
        font-size: 30px;
    }
}