/* Gallery Specific Styles */
.gallery-item .card-img-wrapper {
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(43, 76, 126, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Filter Buttons */
.filter-buttons .btn {
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 8px 20px;
}

.filter-buttons .btn.active {
    background-color: var(--primary-color);
    color: white;
}

