/* BARE MINIMUM - NO TRICKS */

.gallery-hero {
    background: #FF8C00;
    padding: 140px 0 80px;
    text-align: center;
    color: white;
}

.gallery-hero-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.gallery-hero-subtitle {
    font-size: 18px;
}

.gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.filter-btn {
    padding: 12px 30px;
    margin: 5px;
    background: white;
    border: 2px solid #FF8C00;
    color: #FF8C00;
    border-radius: 30px;
    cursor: pointer;
}

.filter-btn.active {
    background: #FF8C00;
    color: white;
}

/* SIMPLE GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* SIMPLE ITEMS */
.gallery-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-item.hide {
    display: none;
}

/* SIMPLE IMAGES - WITH LAZY LOADING FIX */
.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    background: #e0e0e0; /* Placeholder while loading */
}

.gallery-overlay {
    padding: 15px;
}

.gallery-info h3 {
    font-size: 16px;
    margin: 0 0 5px 0;
}

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

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: white;
    color: black;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
}

.lightbox-next {
    right: 20px;
    top: 50%;
}

/* CTA */
.gallery-cta {
    background: #FF8C00;
    padding: 80px 0;
    text-align: center;
    color: white;
}

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

.gallery-cta p {
    font-size: 18px;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-white {
    background: white;
    color: #FF8C00;
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
}

.btn-white-outline {
    background: transparent;
    color: white;
    padding: 15px 35px;
    border: 2px solid white;
    border-radius: 30px;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 968px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
