/* ===== GALLERY SECTION ===== */
.clh-gallery-section {
    background: linear-gradient(135deg, #f8fdf8 0%, #f0f9f0 100%);
    padding: 80px 0;
    position: relative;
}

.clh-gallery-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(46, 139, 87, 0.2), transparent);
}

.clh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.clh-gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.clh-gallery-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.1), rgba(60, 179, 113, 0.2));
    color: #2E8B57;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(46, 139, 87, 0.2);
}

.clh-gallery-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.2;
}

.clh-gallery-highlight {
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.clh-gallery-highlight::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2E8B57, #3CB371);
    opacity: 0.3;
}

.clh-gallery-subtitle {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Filter */
.clh-gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.clh-filter-btn {
    padding: 10px 24px;
    background: white;
    border: 1px solid rgba(46, 139, 87, 0.1);
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clh-filter-btn:hover {
    background: rgba(46, 139, 87, 0.05);
    color: #2E8B57;
    border-color: rgba(46, 139, 87, 0.3);
}

.clh-filter-btn.clh-filter-active {
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    color: white;
    border-color: #2E8B57;
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.2);
}

/* Gallery Grid */
.clh-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.clh-gallery-item {
    animation: clh-fadeIn 0.5s ease forwards;
}

@keyframes clh-fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.clh-gallery-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(46, 139, 87, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    aspect-ratio: 4/3;
}

.clh-gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(46, 139, 87, 0.15);
    border-color: rgba(46, 139, 87, 0.3);
}

.clh-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.clh-gallery-card:hover .clh-gallery-img {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1100px) {
    .clh-gallery-title {
        font-size: 36px;
    }
    
    .clh-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 992px) {
    .clh-gallery-section {
        padding: 60px 0;
    }
    
    .clh-gallery-title {
        font-size: 32px;
    }
    
    .clh-gallery-subtitle {
        font-size: 16px;
    }
    
    .clh-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .clh-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }
    
    .clh-gallery-card {
        aspect-ratio: 1/1;
    }
}

@media (max-width: 576px) {
    .clh-gallery-title {
        font-size: 28px;
    }
    
    .clh-gallery-filter {
        gap: 8px;
    }
    
    .clh-filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .clh-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .clh-gallery-title {
        font-size: 24px;
    }
    
    .clh-gallery-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
}