.gallery-section {
    margin-top: 5%;
}

.gallery-title {
    font-weight: 700;
}

.gallery-subtitle {
    color: #777;
    font-size: 14px;
}

/* Filter buttons */
.filter-btn {
    border: none;
    background: #eee;
    padding: 8px 18px;
    border-radius: 20px;
    margin: 5px;
    font-size: 13px;
    cursor: pointer;
    transition: .3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: #d87a00;
    color: #fff;
}

/* Gallery images */
.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    cursor: pointer;
    transition: .3s;
}

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

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.lightbox.show {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 576px) {
    .gallery-img {
        height: 160px;
    }
}



.insta-section {
    background: #f3f3f3;
}

.insta-card {
    background: #efefef;
    border-radius: 24px;
    padding: 50px 30px;
    max-width: 900px;
}

.insta-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.insta-text {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
}

/* Gradient button */
.insta-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(90deg, #7b2cff, #ff2f7b);
    transition: 0.3s;
}

.insta-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .insta-card {
        padding: 40px 20px;
        border-radius: 18px;
    }

    .insta-title {
        font-size: 22px;
    }

    .insta-text {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .insta-card {
        padding: 30px 15px;
    }
}