/* Creative Ideai - Portfolio Page Styles 
/* ===================================================
   PORTFOLIO PAGE STYLES (Grid: 229x162px)
   =================================================== */
.portfolio {
    padding: 30px 0;
    max-width: 1200px;
    margin: 0 auto;
}
/*  FİLTRE BUTONLARI */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    list-style: none;
    padding: 0;
}
.filter-btn {
    color: #fff;
    background: transparent;
    border: 1px solid #333;
    padding: 4px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
}
.filter-btn:hover,
.filter-btn.active {
    background: #ff6600;
}
/* ANA GRID YAPISI (229x162) */
.portfolio-all-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 229px);
    gap: 10px;
    justify-content: center;
    padding: 20px 0;
}
/* PORTFOLYO KUTUSU */
.portfolio-item {
    width: 229px;
    height: 162px;
    position: relative;
    overflow: hidden;
    border: 1px solid #222;
    cursor: pointer;
}
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.portfolio-item:hover img {
    transform: scale(1.1);
}
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 102, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bolder;
    opacity: 0;
    transition: 0.3s opacity ease;
    pointer-events: none;
}
.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}
/* ===================================================
                  RESPONSIVE
=================================================== */
@media (max-width: 500px) {
.filter-btn {
        color: #fff;
        padding: 4px 10px;
        border-radius: 4px;
        font-size: 12px;
    }
        .portfolio-all-grid {
            grid-template-columns: repeat(auto-fill, 100px);
        }
.portfolio-item {
    width: 80px;
    height: 57px;
}
.portfolio-item img {
    width: 100%;
    height: 100%;
}
}