/* Devam eden projeler sayfası için özel stiller */
.page-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 60%, var(--copper) 100%);
    display: flex;
    align-items: center;
    position: relative;
    margin-top: -120px;
    padding-top: 120px;
    padding-bottom: 80px;
    text-align: left;
}

.page-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1));
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-family: 'AW Conqueror Didot Light', serif;
    font-size: 3.5rem;
    color: white;
    position: relative;
    padding-left: 30px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.page-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: var(--copper);
    border-radius: 2px;
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    padding-left: 30px;
}

/* Proje Kartları Grid Düzeni */
.projects-overview {
    padding: 80px 0 40px;
    background-color: #fff;
    position: relative;
    z-index: 3;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.project-card-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

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

.project-card:hover .project-card-img img {
    transform: scale(1.1);
}

.project-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--copper);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-completion-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: rgba(13, 35, 64, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.project-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-card-title {
    font-family: 'AW Conqueror Didot Light', serif;
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.project-card-location {
    color: var(--copper);
    font-size: 1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.project-card-location i {
    margin-right: 8px;
}

.project-card-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.section-divider {
    height: 1px;
    background: linear-gradient(to right, rgba(200, 117, 51, 0.1), rgba(200, 117, 51, 0.6), rgba(200, 117, 51, 0.1));
    margin: 60px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-family: 'AW Conqueror Didot Light', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    color: #c87533;
}

.section-heading h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--copper);
    border-radius: 2px;
}

.section-heading p {
    color: #3a2a1a;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Detay Buton Stilleri */
.btn-details {
    background: linear-gradient(to right, var(--dark-blue), var(--medium-blue));
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
}

.btn-details:hover {
    background: linear-gradient(to right, var(--medium-blue), var(--dark-blue));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 35, 64, 0.2);
}

/* Mevcut proje kartları stilleri */
.project-detail-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-detail-header {
    display: flex;
    flex-direction: column;
}

.project-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
    min-height: 250px;
    max-height: 750px;
}

.gallery-main {
    height: 100%;
}

.gallery-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
}

.project-detail-content {
    padding: 40px;
    color: #333;
}

.project-detail-title {
    font-family: 'AW Conqueror Didot Light', serif;
    font-size: 2.5rem;
    color: var(--copper);
    margin-bottom: 5px;
}

.project-detail-location {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.project-detail-location i {
    color: var(--copper);
    margin-right: 8px;
}

.project-detail-description {
    margin-bottom: 30px;
    line-height: 1.8;
}

.project-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(200, 117, 51, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--copper);
    font-size: 1.2rem;
}

.specifications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    background: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.spec-item {
    text-align: center;
}

.spec-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--copper);
    margin-bottom: 5px;
}

.spec-label {
    font-size: 0.9rem;
    color: #666;
}

.project-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: linear-gradient(to right, var(--dark-blue), var(--medium-blue));
    color: white;
}

.project-status {
    display: inline-block;
    padding: 6px 12px;
    background: var(--copper);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.project-progress {
    height: 8px;
    background: #eee;
    border-radius: 4px;
    margin-top: 20px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(to right, var(--copper), var(--copper-light));
    border-radius: 4px;
}

.progress-percentage {
    text-align: right;
    color: var(--copper);
    font-weight: 600;
    margin-top: 5px;
}

@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .project-gallery {
        grid-template-columns: 1fr;
        height: auto;
    }

    .gallery-side {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
}

/* Mobile Responsive - 768px ve altı - Sadece bu sayfa için */
@media (max-width: 768px) {
    .page-hero {
        min-height: 50vh;
        margin-top: -120px;
        padding-top: 140px;
        padding-bottom: 60px;
        text-align: left;
    }
    
    .page-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
        padding-left: 20px;
    }
    
    .page-title::before {
        width: 4px;
    }
    
    .page-hero p {
        font-size: 1rem;
        padding-left: 20px;
        line-height: 1.6;
    }
    
    .projects-overview {
        padding: 60px 0;
    }

    .projects-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 15px;
    }
    
    .project-card {
        max-width: 100%;
    }

    .section-heading h2 {
        font-size: 2rem;
    }
    
    .section-heading p {
        font-size: 0.95rem;
        padding: 0 15px;
    }

    .project-card-title {
        font-size: 1.5rem;
    }

    .project-detail-content {
        padding: 30px;
    }

    .project-detail-title {
        font-size: 2rem;
    }
}

/* Small Mobile - 480px ve altı - Sadece bu sayfa için */
@media (max-width: 480px) {
    .page-hero {
        min-height: 45vh;
        margin-top: -120px;
        padding-top: 130px;
        padding-bottom: 50px;
        text-align: left;
    }
    
    .page-title {
        font-size: 2rem;
        margin-bottom: 15px;
        line-height: 1.2;
        padding-left: 15px;
    }
    
    .page-title::before {
        width: 3px;
    }
    
    .page-hero p {
        font-size: 0.9rem;
        padding-left: 15px;
        line-height: 1.5;
    }
    
    /* Sadece çok uzun metinlerde br'leri gizle, normal br'leri koru */
    .page-hero p br:nth-of-type(n+3) {
        display: none; /* Sadece 3. ve sonraki br etiketlerini gizle */
    }
    
    .projects-overview {
        padding: 40px 0;
    }

    .section-heading h2 {
        font-size: 1.8rem;
    }
    
    .section-heading p {
        font-size: 0.9rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .gallery-side {
        grid-template-columns: 1fr;
    }

    .project-features {
        grid-template-columns: 1fr;
    }

    .specifications {
        grid-template-columns: 1fr 1fr;
    }

    .project-cta {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Extra Small Mobile - 360px ve altı - Sadece bu sayfa için */
@media (max-width: 360px) {
    .page-hero {
        margin-top: -120px;
        padding-top: 120px;
        padding-bottom: 40px;
        text-align: left;
    }
    
    .page-title {
        font-size: 1.8rem;
        padding-left: 10px;
    }
    
    .page-title::before {
        width: 3px;
    }
    
    .page-hero p {
        font-size: 0.85rem;
        padding-left: 10px;
    }
}

@media (max-width: 576px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .gallery-side {
        grid-template-columns: 1fr;
    }

    .project-features {
        grid-template-columns: 1fr;
    }

    .specifications {
        grid-template-columns: 1fr 1fr;
    }

    .project-cta {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
