/* Projeler Sayfası - Hakkımızda ile Aynı Stil */

.page-header {
    background: linear-gradient(135deg, #2C2C2C 0%, #4A4A4A 100%);
    padding: 100px 0 60px;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.projects-count {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 25px;
    margin-top: 10px;
    font-weight: 600;
}

.all-projects-section {
    padding: 60px 0;
}

/* Proje Kartları */
.project-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    height: 350px;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    color: white;
    padding: 30px 20px 20px;
    opacity: 1;
    transform: translateY(0);
    transition: none;
}

.project-overlay h4,
.project-overlay p {
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    transform: translateY(0);
    transition: none;
}

.project-overlay h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.project-overlay p {
    margin: 8px 0;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1.6;
    opacity: 0.95;
}

.project-overlay p i {
    color: #FFD700;
}

/* Hover efekti - sadece resim büyür */
.project-card:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }
    
    .project-card {
        height: 300px;
    }
}