/* Project Detail Page Styles */

/* Project Header */
.project-header {
    padding: 8rem 3rem 4rem;
    text-align: center;
    margin-top: 80px;
}

.project-header-content {
    max-width: 900px;
    margin: 0 auto;
}

.project-title-large {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.project-subtitle {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 400;
}

/* Project Images - Vertical Scroll Layout */
.project-images {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem 4rem;
}

.project-image-wrapper {
    margin-bottom: 2rem;
    background: #F5F5F5;
}

.project-image-wrapper:last-child {
    margin-bottom: 0;
}

.project-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Back Link */
.back-link-section {
    padding: 4rem 3rem;
    text-align: center;
}

.back-link {
    font-size: 1rem;
    color: var(--color-text);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.back-link:hover {
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    .project-header {
        padding: 6rem 1.5rem 3rem;
    }
    
    .project-images {
        padding: 0 1.5rem 3rem;
    }
    
    .project-image-wrapper {
        margin-bottom: 1.5rem;
    }
    
    .back-link-section {
        padding: 3rem 1.5rem;
    }
}
