<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Bally Kalangan - Enhanced Gallery Styles
 */

/* Gallery Styles */
.gallery-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.gallery-filter {
    margin-bottom: 30px;
}

.gallery-filter button {
    margin: 0 5px;
    padding: 8px 20px;
    background-color: #009b00;
    border: none;
    color: #fff;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.gallery-filter button:hover,
.gallery-filter button.active {
    background-color: #000;
    color: #9bfe92;
}

.gallery-item {
    margin-bottom: 30px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.gallery-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 100%;
}

.gallery-wrap:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gallery-img {
    position: relative;
    overflow: hidden;
}

.gallery-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.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: all 0.5s ease;
}

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

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

.gallery-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #9bfe92;
    margin-bottom: 10px;
}

.gallery-info p {
    font-size: 14px;
    margin-bottom: 15px;
}

.gallery-info a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #009b00;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.gallery-info a:hover {
    background: #9bfe92;
    transform: rotate(360deg);
}

/* Responsive Styles for Gallery */
@media (max-width: 1199px) {
    .gallery-img img {
        height: 220px;
    }
}

@media (max-width: 991px) {
    .gallery-section {
        padding: 70px 0;
    }
    
    .gallery-img img {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-filter {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .gallery-filter button {
        padding: 6px 15px;
        margin: 0 3px 8px;
        font-size: 0.9rem;
    }
    
    .gallery-img img {
        height: 220px;
    }
    
    .gallery-item {
        max-width: 95%;
    }
}

@media (max-width: 575px) {
    .gallery-section {
        padding: 50px 0;
    }
    
    .gallery-filter button {
        padding: 5px 12px;
        margin: 0 2px 6px;
        font-size: 0.8rem;
    }
    
    .gallery-img img {
        height: 180px;
    }
    
    .gallery-info h4 {
        font-size: 16px;
    }
    
    .gallery-info p {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .gallery-info a {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
    
    .gallery-item {
        max-width: 100%;
    }
}

@media (max-width: 420px) {
    .gallery-img img {
        height: 160px;
    }
    
    .gallery-filter button {
        padding: 4px 10px;
        font-size: 0.75rem;
    }
} </pre></body></html>