* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Times New Roman', Times, serif;
    background: #fff;
    color: #000;
    line-height: 1.6;
}

/* Header */
header {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: normal;
    margin-bottom: 0.3rem;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-style: italic;
    margin-bottom: 2rem;
    color: #333;
}

nav {
    margin-top: 2rem;
}

nav a {
    color: #000;
    text-decoration: none;
    margin: 0 1.5rem;
    font-size: 1.1rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

nav a:hover {
    border-bottom-color: #000;
}

/* Projects Section */
#projects {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

#projects h2 {
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 3rem;
    text-align: center;
}

.project-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.project {
    border-top: 1px solid #000;
    padding-top: 1.5rem;
}

.project img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #000;
}

.project h3 {
    font-size: 1.8rem;
    font-weight: normal;
    margin-bottom: 0.5rem;
}

.project p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    padding: 3rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
    width: fit-content;
}

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

.contact p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #ccc;
}

.contact .address {
    margin-top: 1.5rem;
    font-style: italic;
    line-height: 1.6;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    nav a {
        display: block;
        margin: 0.8rem 0;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .project-list {
        grid-template-columns: 1fr;
    }
}