@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;500;600;700&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: #222;
    background-color: #fff;
    font-weight: 400;
}

/* Layout */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    color: #333;
    /* letter-spacing: -0.01em; */
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: #333;
}

.nav-links a.active {
    color: #333;
    text-decoration: underline;
}

/* Hero section */
.hero {
    margin-bottom: 60px;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-bottom: 40px;
}

.hero-text {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    max-width: 650px;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Projects */
.projects-grid {
    margin-bottom: 60px;
}

.project {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    padding-bottom: 50px;
    border-bottom: 1px solid #eee;
    align-items: flex-start;
}

.project:last-child {
    border-bottom: none;
}

.project-thumbnail {
    flex-shrink: 0;
    width: 380px;
    height: 250px;
    overflow: hidden;
    border-radius: 4px;
}

.project-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.project-thumbnail div {
    width: 100%;
    height: 100%;
}

.project-info {
    flex: 1;
}

.project h3 {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.project h3 a {
    text-decoration: none;
    color: #333;
}

.project h3 a:hover {
    color: #666;
}

.project-meta {
    /* text-transform: uppercase; */
    font-size: 11px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 1.5;
}

.project-description {
    font-size: 15px;
    line-height: 1.6;
    color: #222;
    margin-bottom: 15px;
    font-weight: 200;
}



/* Project Detail Pages */
.project-detail {
    margin-bottom: 60px;
    max-width: 800px;
}

.project-detail .hero-image {
    margin-bottom: 40px;
}

.project-detail .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.project-detail h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

.project-detail .project-meta {
    font-size: 12px;
    color: #666;
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 1.6;
}

.project-detail .project-links {
    margin-bottom: 30px;
}

.project-detail .project-content {
    margin-bottom: 40px;
}

.project-detail .project-content p {
    font-size: 16px;
    line-height: 1.65;
    color: #444;
    margin-bottom: 20px;
    font-weight: 200;
}

.project-detail .additional-images {
    margin-top: 50px;
}

.project-detail .additional-images img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 30px;
}

.project-detail .back-link {
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.project-link.external::after {
    content: " ↗";
    font-size: 12px;
}

/* About page */
.about-content {
    margin-bottom: 60px;
}

.about-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-bottom: 40px;
}

.about-section {
    margin-bottom: 50px;
}

.about-section h5 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.about-section h6 {
    font-size: 13px;
    font-weight: 600;
    margin: 25px 0 10px 0;
    color: #666;
}

.about-section p, .about-section div {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.about-section a {
    color: #333;
    text-decoration: underline;
}

.about-section a:hover {
    color: #666;
}

.exhibition-entry {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.venue {
    font-weight: 500;
}

.last-updated {
    font-size: 13px;
    color: #888;
    font-style: italic;
    margin-bottom: 30px;
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid #eee;
    margin-top: 60px;
    text-align: center;
}

.footer-content {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
}

.footer-content a {
    color: #666;
    text-decoration: none;
}

.footer-content a:hover {
    color: #333;
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 600px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-text {
        font-size: 16px;
    }

    .project {
        flex-direction: column;
        gap: 20px;
    }

    .project-thumbnail {
        width: 100%;
        height: 200px;
    }

    .project h3 {
        font-size: 15px;
    }

    .project-detail {
        margin-bottom: 40px;
    }

    .project-detail h1 {
        font-size: 20px;
    }

    .project-detail .hero-image {
        margin-bottom: 30px;
    }

    .project-detail .additional-images img {
        margin-bottom: 20px;
    }
}