﻿/* --- Proje Detay Sayfası Stilleri --- */

/* Hero Alanı */
.project-detail-hero {
    position: relative;
    padding: 8rem 0;
    background-size: cover;
    background-position: center;
    color: white;
}

.project-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

    .page-hero-content .breadcrumb-item a {
        color: #f8f9fa;
        text-decoration: none;
        transition: color 0.3s;
    }

        .page-hero-content .breadcrumb-item a:hover {
            color: #ffc107;
        }

    .page-hero-content .breadcrumb-item.active {
        color: #adb5bd;
    }

/* Genel Başlık Stili */
.section-title {
    color: #212529;
    margin-bottom: 1rem;
}

.title-hr {
    width: 70px;
    height: 4px;
    background-color: #ffc107; /* Ana renk */
    margin-bottom: 2rem;
    border: 0;
    opacity: 1;
}

/* Proje Künyesi Kartı */
.summary-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.05);
}

.stat-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

    .stat-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

.stat-icon {
    font-size: 1.5rem;
    color: #ffc107;
    margin-right: 1.5rem;
    width: 40px;
    text-align: center;
}

.stat-text strong {
    display: block;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.stat-text p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #212529;
    margin-bottom: 0;
}


/* Galeri Stilleri */
.gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
}

.gallery-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

/* Çağrı (CTA) Alanı */
.cta-section {
    background-color: #f8f9fa;
}
