/* GALLERY PAGE STYLES */

/* Page Header */
.page-header {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.page-header .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #fff;
}

.page-header p {
    font-size: 18px;
    color: #f0f0f0;
}

/* Gallery Filters */
.gallery-filters {
    padding: 40px 0;
    background: #f8f9fa;
}

.filter-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.gallery-filter {
    padding: 10px 24px;
    border: none;
    background: #fff;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-filter:hover,
.gallery-filter.active {
    background: #D4AF37;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Gallery Grid */
.gallery-section {
    padding: 60px 0 80px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    aspect-ratio: 1 / 1;
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 30px;
    margin-bottom: 10px;
    color: #D4AF37;
}

.gallery-overlay span {
    font-size: 14px;
    font-weight: 500;
}

/* Video Gallery Section */
.video-gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #fff);
}

/* Instagram CTA */
.instagram-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #0B2545, #1B3A6B);
    color: #fff;
    text-align: center;
}

.insta-cta-content i {
    font-size: 60px;
    color: #D4AF37;
    margin-bottom: 20px;
}

.insta-cta-content h2 {
    color: #fff;
    margin-bottom: 10px;
}

.insta-cta-content p {
    color: #ddd;
    font-size: 18px;
    margin-bottom: 30px;
}

/* Lightbox customizations */
.lb-data .lb-caption {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
}

.lb-data .lb-number {
    font-size: 12px;
}

/* Responsive */
@media(max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-header h1 {
        font-size: 36px;
    }
}

@media(max-width: 768px) {
    .filter-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-filter {
        width: 100%;
        max-width: 280px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}