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

body {
    font-family: 'Georgia', 'Palatino', 'Times New Roman', serif;
    line-height: 1.8;
    color: #2a2a2a;
    background: #f5f5f0;
    padding: 20px;
    font-size: 18px;
}

/* Container */
.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 80px;
    padding-bottom: 40px;
    border-bottom: 1px solid #d0d0c8;
}

h1 {
    font-size: 2.5em;
    font-weight: normal;
    color: #1a1a1a;
    letter-spacing: 0.02em;
}

/* Main content */
main {
    margin-bottom: 80px;
}

.manifesto {
    margin-bottom: 100px;
}

.manifesto p {
    margin-bottom: 1.8em;
    text-align: justify;
}

.manifesto .intro {
    font-size: 1.3em;
    font-style: italic;
    color: #3a3a3a;
    margin-bottom: 2.5em;
    text-align: center;
}

.manifesto .closing {
    text-align: center;
    font-style: italic;
    font-size: 1.1em;
    color: #4a4a4a;
    margin-top: 3em;
}

/* Projects section */
.projects {
    border-top: 1px solid #d0d0c8;
    padding-top: 60px;
}

.projects h2 {
    font-size: 1.8em;
    font-weight: normal;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.project {
    background: #ffffff;
    padding: 30px;
    border: 1px solid #e0e0d8;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.project h3 {
    font-size: 1.4em;
    font-weight: normal;
    margin-bottom: 15px;
}

.project h3 a {
    color: #2a5a7a;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

.project h3 a:hover {
    border-bottom-color: #2a5a7a;
}

.project p {
    color: #4a4a4a;
    line-height: 1.7;
}

/* Footer */
footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #d0d0c8;
    color: #6a6a6a;
}

footer a {
    color: #2a5a7a;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

footer a:hover {
    border-bottom-color: #2a5a7a;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .container {
        padding: 40px 15px;
    }

    h1 {
        font-size: 2em;
    }

    .manifesto .intro {
        font-size: 1.2em;
    }

    .manifesto p {
        text-align: left;
    }
}

/* Subtle animation on page load */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    animation: fadeIn 1s ease-out;
}
