﻿.project-details {

    padding: 100px 10px 15px 20px;
}

.project-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: auto;
    max-width:1700px;
    animation: SlideInFromUp 0.6s ease-out;
}

.project-title {
    font-size: 24px;
    color: #eaeaea;
    margin: 0;
}

.project-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.project-header h1 {
    margin: 0;
    font-size: 24px;
    text-align: right;
    flex: 1;
}

.project-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #eaeaea;
}

.project-description {
    padding-top: 20px;
    font-size: 16px;
    color: #e2e2e2;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px; /* Blok olarak ortalar */
    text-align: justify; /* Metni iki yana yasla */
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

    .image-gallery img {
        height: auto;
        max-width: 900px;
        width: auto; /* Doğal genişlik */
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        flex-shrink: 0; /* Küçülmeye zorlanmasın */
    }

.no-images {
    font-style: italic;
    color: #aaa;
}
 
.back-container {
    width: 50px; /* sabit genişlik */
}

.spacer {
    width: 50px; /* sağ tarafı dengelemek için */
}

.back-link {
    font-size: 32px;
    color: #80cdea;
    font-weight: bold;
    text-decoration: none;
}

    .back-link:hover {
        color: #b2ebf2;
    }

.title-container {
    flex: 1;
    text-align: center;
}

