/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Work Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

/* Header */
header {
    background-color: #fff;
    padding: 1.5rem 5%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo h1 {
    font-size: 1.5rem;
    color: #1a1a1a;
}

.back-link {
    font-size: 0.95rem;
    font-weight: 400;
    color: #666;
}

/* Project Hero */
.project-hero {
    padding: 8rem 5%;
    text-align: center;
    color: #fff;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.project-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Project Info */
.project-info {
    padding: 4rem 5%;
    background-color: #f9f9f9;
}

.info-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.info-item h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-item p {
    font-size: 1.1rem;
    color: #1a1a1a;
}

/* Project Description */
.project-description {
    padding: 5rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.description-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.description-content h3 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #1a1a1a;
}

.description-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.description-content ul {
    list-style: none;
    margin: 1.5rem 0;
}

.description-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #444;
}

.description-content li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a1a1a;
}

/* Project Images */
.project-images {
    padding: 3rem 5%;
    max-width: 1250px;
    margin: 0 auto;
}

.image-container {
    margin-bottom: 3rem;
}

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

/* Placeholder for images - remove when adding real images */
.placeholder-image {
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
}

/* Next Project */
.next-project {
    padding: 6rem 5%;
    background-color: #1a1a1a;
    color: #fff;
}

.next-project a {
    display: block;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.next-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 1rem;
}

.next-content h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.next-content p {
    font-size: 1.2rem;
    color: #ccc;
}

/* Footer */
footer {
    background-color: #111;
    color: #888;
    padding: 2rem 5%;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #888;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .project-subtitle {
        font-size: 1.1rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .description-content h2 {
        font-size: 2rem;
    }
    
    .description-content h3 {
        font-size: 1.5rem;
    }
    
    .description-content p,
    .description-content li {
        font-size: 1rem;
    }
    
    .placeholder-image {
        height: 400px;
    }
    
    .next-content h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .project-hero {
        padding: 4rem 5%;
        min-height: 40vh;
    }
    
    .placeholder-image {
        height: 300px;
    }
}