/* Project Page Styles */

.project-hero {
    padding: 140px 0 60px;
    background: var(--bg-white);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    background: var(--bg-white);
    color: var(--text-dark);
    text-decoration: none;
    margin-bottom: 2rem;
    transition: all 0.3s;
    font-weight: 600;
    border-radius: 25px;
    border: 2px solid var(--border-light);
    font-size: 0.9rem;
}

.back-link:hover {
    background: var(--bg-light-gray);
    border-color: var(--primary-purple);
    color: var(--primary-purple);
    transform: translateX(-5px);
}

.project-header {
    max-width: 800px;
}

.project-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--bg-lavender);
    color: var(--primary-purple);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-title {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

/* Simplified 2-Column Layout */
.project-content {
    background: var(--bg-white);
}

.project-grid-simple {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: start;
}

/* Left Column - Images */
.project-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.project-image-item {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

/* Right Column - Sticky Sidebar */
.project-info-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
    background: var(--bg-light-gray);
    padding: 3rem;
    border-radius: 20px;
    height: fit-content;
}

.project-info-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.project-info-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
}

.project-info-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-detail {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.info-detail:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-detail strong {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-medium);
    font-weight: 600;
}

.info-detail span {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* More Projects */
.more-projects {
    background: var(--bg-light-gray);
}

.more-projects .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.project-card-small {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
}

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

.project-card-small img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.project-card-small h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    color: var(--text-dark);
}

.project-card-small p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-medium);
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .project-grid-simple {
        grid-template-columns: 1fr;
    }
    
    .project-info-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .project-title {
        font-size: 2.5rem;
    }
    
    .project-subtitle {
        font-size: 1.2rem;
    }
    
    .project-images-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
}
