/* Gallery Overlay Styles */
.gallery-card.style2 {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

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

.gallery-card.style2 .box-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card.style2:hover .box-img img {
    transform: scale(1.1);
}

.gallery-card.style2 .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-card.style2 .gallery-badge {
    display: inline-block;
    background: var(--theme-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.gallery-card.style2 .gallery-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.gallery-card.style2 .simple-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--theme-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-card.style2:hover .simple-btn {
    opacity: 1;
}

.filter-menu {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-menu button {
    background: transparent;
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-menu button:hover,
.filter-menu button.active {
    background: var(--theme-color);
    color: #fff;
}
