/* Portfolyo Özel Stil Dosyası */

/* Filtre Butonları */
.portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btn {
    background-color: #f5f5f5;
    border: none;
    border-radius: 30px;
    color: #333;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: #35ab39;
    color: white;
    box-shadow: 0 5px 15px rgba(53, 171, 57, 0.3);
}

/* Portfolyo Kartları */
.portfolio-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.portfolio-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.portfolio-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-card-img img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(53, 171, 57, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: white;
    color: #35ab39;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}

.portfolio-overlay a:hover {
    background-color: #333;
    color: white;
}

.portfolio-card-content {
    padding: 20px;
}

.portfolio-card-content h4 {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.portfolio-card-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.tag {
    background-color: #f5f5f5;
    border-radius: 20px;
    color: #666;
    font-size: 12px;
    padding: 4px 12px;
}

/* Responsive Ayarlar */
@media (max-width: 992px) {
    .portfolio-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .filter-btn {
        font-size: 13px;
        padding: 6px 15px;
        margin-bottom: 5px;
    }

    .portfolio-card-img {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .portfolio-filter {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 80%;
        margin-bottom: 8px;
    }
}
