/* Proje Detay Sayfası CSS - Sadeleştirilmiş */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Breadcrumb */
.breadcrumb-section {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.breadcrumb-link {
    color: var(--neutral-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #0052A3;
}

.breadcrumb-separator {
    color: #ccc;
    font-size: 14px;
}

.breadcrumb-current {
    color: #0052A3;
    font-size: 14px;
    font-weight: 700;
}

/* Project Hero */
.project-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.project-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.project-hero-content {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    z-index: 2;
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.status-ongoing {
    background: var(--green-bright);
    color: #000;
}

.status-icon {
    font-size: 16px;
}

.project-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.project-hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Project Details Section */
.project-details-section {
    padding: 80px 0;
}

.project-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
}

/* Main Content */
.project-main {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.content-block {
    animation: fadeInUp 0.6s ease-out backwards;
}

.content-block:nth-child(1) { animation-delay: 0.1s; }
.content-block:nth-child(2) { animation-delay: 0.2s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-title {
    font-size: 36px;
    font-weight: 800;
    color: #0052A3;
    margin-bottom: 24px;
    font-family: 'Montserrat', sans-serif;
}

.content-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--neutral-gray);
    margin-bottom: 20px;
    font-weight: 500;
}

/* Gallery */
.project-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 82, 163, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-zoom {
    font-size: 48px;
}

/* Sidebar */
.project-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

.sidebar-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.sidebar-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--dark-gray);
}

/* Related Projects */
.related-projects {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.related-project {
    display: flex;
    gap: 16px;
    padding: 12px;
    background: var(--light-gray);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-project:hover {
    background: #e0e0e0;
    transform: translateX(4px);
}

.related-project img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.related-project-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.related-project-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 6px;
    line-height: 1.3;
}

.related-project-status {
    font-size: 12px;
    color: var(--neutral-gray);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1200px) {
    .project-layout {
        grid-template-columns: 1fr 350px;
        gap: 40px;
    }

    .project-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .project-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .project-sidebar {
        position: static;
    }

    .project-hero-title {
        font-size: 48px;
    }

    .project-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .project-hero {
        height: 400px;
    }

    .project-hero-title {
        font-size: 36px;
    }

    .project-hero-subtitle {
        font-size: 18px;
    }

    .project-details-section {
        padding: 60px 0;
    }

    .content-title {
        font-size: 28px;
    }

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

    .gallery-item {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .project-hero {
        height: 300px;
    }

    .project-hero-content {
        bottom: 30px;
    }

    .project-hero-title {
        font-size: 28px;
    }

    .project-hero-subtitle {
        font-size: 16px;
    }

    .sidebar-card {
        padding: 24px;
    }
}
/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
    animation: lightboxZoom 0.3s;
    border-radius: 10px;
}

@keyframes lightboxZoom {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #00D4FF;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 60px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #00D4FF;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-caption {
    color: white;
    font-size: 18px;
    margin-top: 20px;
    text-align: center;
    font-weight: 600;
}

.gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 80%;
    }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 40px;
        padding: 10px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-caption {
        font-size: 14px;
    }
}
