/* Projects Page Specific Styles */

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Neler Yaptık - Resimli kart grid: resim, altında proje adı, hover'da detay */
.neler-yaptik-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.neler-yaptik-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.neler-yaptik-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.neler-yaptik-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.neler-yaptik-image-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.neler-yaptik-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.neler-yaptik-card:hover .neler-yaptik-image-wrap img {
    transform: scale(1.05);
}

.neler-yaptik-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
}

.neler-yaptik-card:hover .neler-yaptik-overlay {
    opacity: 1;
}

.neler-yaptik-overlay .neler-yaptik-aciklama {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #eee;
    text-align: center;
}

.neler-yaptik-baslik {
    margin: 0;
    padding: 1rem 1rem 1.25rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.35;
}

/* Project Stats */
.project-stats {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 3rem;
    color: #ff6b35;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-weight: 500;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .cta-button {
    background: white;
    color: #e74c3c;
}

.cta-section .cta-button:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .neler-yaptik-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .neler-yaptik-image-wrap {
        height: 200px;
    }

    .neler-yaptik-baslik {
        font-size: 0.95rem;
        padding: 0.85rem 0.9rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .neler-yaptik-grid {
        grid-template-columns: 1fr;
    }

    .neler-yaptik-image-wrap {
        height: 240px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }
}
