/* Proje Bilgi Kartı Tasarımı */
.project-info-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    margin-top: 120px; /* Header'ın altında kalmaması için */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-left: 6px solid var(--ana-renk); /* Senin panelden gelen rengin */
}

.info-content {
    flex: 1;
    padding-right: 40px;
}

.info-label {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--ana-renk);
    margin-bottom: 10px;
    display: block;
}

.project-info-card h1 {
    font-size: 32px;
    color: #222;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-divider {
    width: 60px;
    height: 4px;
    background: var(--ana-renk);
    margin-bottom: 20px;
    border-radius: 2px;
}

.project-info-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
}

/* Sağ taraftaki küçük istatistik alanı */
.info-stats {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 15px;
    min-width: 200px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #444;
    font-weight: 500;
}

.stat-item:last-child { margin-bottom: 0; }

.stat-item i {
    color: var(--ana-renk);
    font-size: 1.2rem;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .project-info-card {
        flex-direction: column;
        padding: 25px;
    }
    .info-content {
        padding-right: 0;
        margin-bottom: 25px;
    }
    .info-stats {
        width: 100%;
    }
}





.back-nav {
    margin-top: 100px; /* Header mesafesi */
    margin-bottom: -110px; /* Bilgi kartına yakınlaştırmak için */
    position: relative;
    z-index: 10;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 50px;
    background: #f4f4f4;
}

.back-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.back-btn:hover {
    color: var(--ana-renk);
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.back-btn:hover i {
    transform: translateX(-5px); /* Ok sola doğru hafif kayar */
}







/* Galeri Konteynırı */
.galeri-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    padding: 40px 0;
}

/* Kare Kutular */
.galeri-item {
    position: relative;
    aspect-ratio: 1 / 1; 
    overflow: hidden;
    border-radius: 10px; /* Küçük karelere daha küçük radius daha iyi gider */
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    cursor: pointer;
    background: #f9f9f9;
    transition: transform 0.3s ease;
}

/* Resim ve Zoom Efekti */
.galeri-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}



.galeri-item:hover img {
   transform: scale(1.2); /* Mouse gelince büyüme */
}

/* Sayfa İçi Büyütme Ekranı (Lightbox Overlay) */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px); /* Arka planı hafif bulandırır, şekil durur */
}

.custom-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    top: 20px; right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    font-family: Arial, sans-serif;
}