/* PROJELER SAYFASI STİLLERİ */
.filter-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 25px;
    background-color: var(--white);
    border: 1px solid var(--gray);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* PROJECTS GRID */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px 30px;
    margin-bottom: 60px;
}

.project-item {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.project-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-item:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 188, 156, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.view-project {
    background-color: var(--white);
    color: var(--accent);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.view-project:hover {
    background-color: var(--primary);
    color: var(--white);
}

.project-info {
    padding: 25px;
}

.project-categories {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.category-tag {
    background-color: rgba(26, 188, 156, 0.1);
    color: var(--accent-dark);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
}

.project-info h3 {
    margin-bottom: 15px;
}

.project-info h3 a {
    color: var(--primary);
    transition: var(--transition);
}

.project-info h3 a:hover {
    color: var(--accent);
}

.project-meta {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    color: var(--gray);
    font-size: 0.9rem;
}

.project-meta i {
    margin-right: 5px;
    color: var(--accent);
}

/* PAGINATION */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: 4px;
    color: var(--dark);
    font-weight: 600;
    transition: var(--transition);
}

.page-link:hover, .page-link.active {
    background-color: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .filter-options {
        justify-content: flex-start;
    }
}