
/* ==========================================================================
   GALLERY PAGE STYLES
   ========================================================================== */

.gallery-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.gallery-filters {
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 2px solid #333;
    color: #aaa;
    padding: 10px 24px;
    margin: 6px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.35s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-yellow);
    color: #000;
    border-color: var(--primary-yellow);
    transform: translateY(-2px);
}




.gallery-grid {
    display: flex;
    flex-wrap: wrap;
}

.grid-item {
    width: 33.333%;
    padding: 15px;
}


.gallery-card {
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.gallery-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(255,199,44,0.15);
}

.gallery-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

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

.gallery-card:hover .gallery-image img {
    transform: scale(1.12);
}

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

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

.gallery-zoom {
    width: 60px;
    height: 60px;
    background: var(--primary-yellow);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    transform: scale(0.6);
    transition: all 0.4s ease;
}

.gallery-card:hover .gallery-zoom {
    transform: scale(1);
}

.gallery-info {
    padding: 20px;
    text-align: center;
}

.gallery-info h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: white;
}

.gallery-info p {
    font-size: 14px;
    color: #aaa;
    margin: 0;
}

/* Load More Button */
.load-more-btn {
    background: transparent;
    border: 2px solid var(--primary-yellow);
    color: var(--primary-yellow);
    padding: 14px 40px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.35s ease;
}

.load-more-btn:hover {
    background: var(--primary-yellow);
    color: #000;
    transform: translateY(-3px);
}

/* CTA Bottom */
.cta-bottom {
    padding: 100px 0;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    color: white;
    text-align: center;
}

.cta-inner h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-inner p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-call {
    background: #28a745;
    color: white;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-call:hover {
    background: #218838;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
    .gallery-section {
        padding: 70px 0;
    }
    .gallery-filters button {
        padding: 8px 16px;
        font-size: 14px;
        margin: 6px 4px;
    }
}

@media (max-width: 767px) {
    .gallery-image {
        height: 260px;
    }
    .gallery-info h4 {
        font-size: 18px;
    }
}




@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
      .grid-item {
        width: 50%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
       .grid-item {
        width: 100%;
    }
}