/* Proje Detay Sayfası CSS */

.proje-detail-page {
    padding-top: 150px;
    padding-bottom: 50px;
    background-color: #f5f5f5;
    min-height: 100vh;
}

.proje-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #0080c9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #1a3a7a;
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 8px;
    color: #999;
}

/* Proje Detay */
.proje-detail {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.proje-detail-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.proje-detail-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: "Bebas Neue", cursive;
}

.proje-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #666;
}

.proje-detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.proje-detail-meta i {
    color: #0080c9;
}

.proje-detail-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.proje-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.proje-detail-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #0080c9;
}

.proje-detail-summary p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin: 0;
    font-weight: 500;
}

.proje-detail-content {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-top: 30px;
}

.proje-detail-content p {
    margin-bottom: 20px;
}

.proje-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* İlgili Projeler */
.related-projects {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.related-projects-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    font-family: "Bebas Neue", cursive;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.related-projects-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-proje-item {
    display: flex;
    gap: 20px;
    padding: 15px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    border: 1px solid #f0f0f0;
}

.related-proje-item:hover {
    background-color: #f8f9fa;
    border-color: #0080c9;
}

.related-proje-image {
    flex-shrink: 0;
    width: 150px;
    height: 100px;
    border-radius: 6px;
    overflow: hidden;
}

.related-proje-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-proje-item:hover .related-proje-image img {
    transform: scale(1.05);
}

.related-proje-content {
    flex: 1;
}

.related-proje-item-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.related-proje-item-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-proje-item-title a:hover {
    color: #0080c9;
}

.related-proje-date {
    font-size: 14px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .proje-detail-page {
        padding-top: 120px;
        padding-bottom: 30px;
    }

    .proje-detail-container {
        padding: 0 15px;
    }

    .proje-detail {
        padding: 25px 20px;
    }

    .proje-detail-title {
        font-size: 28px;
    }

    .proje-detail-meta {
        flex-direction: column;
        gap: 10px;
    }

    .related-projects {
        padding: 20px;
    }

    .related-proje-item {
        flex-direction: column;
    }

    .related-proje-image {
        width: 100%;
        height: 200px;
    }
}

