.project-page {
    padding-top: 80px; /* Adjust based on your header height */
}

.project-hero {
    width: 100%;
    height: 60vh;
    overflow: hidden;
    position: relative;
}

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

.project-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

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

.project-meta {
    display: flex;
    gap: 2rem;
    color: #666;
    margin-bottom: 2rem;
}

.project-description {
    margin-bottom: 3rem;
}

.project-description h2 {
    margin-bottom: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.02);
}

.project-details {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.project-details ul {
    list-style: none;
}

.project-details li {
    margin: 1rem 0;
}

.project-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.project-navigation a {
    text-decoration: none;
    color: #007bff;
    transition: color 0.3s;
}

.project-navigation a:hover {
    color: #0056b3;
}

.pdf-container {
    width: 100%;
    margin: 2rem 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.pdf-container embed {
    display: block;
    border: none;
}

/* For browsers that don't support PDF embedding */
.pdf-container p {
    padding: 2rem;
    text-align: center;
}

.pdf-container a {
    color: #007bff;
    text-decoration: none;
}

.pdf-container a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .project-hero {
        height: 40vh;
    }
    
    .project-content {
        padding: 2rem 1rem;
    }
    
    .project-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .project-navigation {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
} 