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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: #F5F1E8;
    color: #1a1a1a;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 30px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 40px;
}

.logo-link {
    display: inline-block;
    transition: opacity 0.2s ease;
}

.logo-link:hover {
    opacity: 0.7;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
}

.ascii-animation {
    font-family: monospace;
    font-size: 14px;
    color: #666;
    opacity: 0.5;
}

.ascii-frame {
    display: inline-block;
}

/* Main Content */
main {
    flex: 1;
}

/* Description Section */
.description {
    text-align: center;
    margin-bottom: 100px;
}

.description p,
.description h1 {
    font-size: 20px;
    font-weight: normal;
    line-height: 1.7;
    color: #2a2a2a;
    max-width: 600px;
    margin: 0 auto;
}

.description a {
    color: #1a1a1a;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: opacity 0.2s ease;
}

.description a:hover {
    opacity: 0.6;
}

/* Projects Section */
.projects {
    margin-bottom: 80px;
}

.projects h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
    margin-bottom: 30px;
}

.coming-soon {
    background-color: #EFEADF;
    border: 1px solid #DDD6C8;
    border-radius: 8px;
    padding: 60px 40px;
    text-align: center;
}

.coming-soon p {
    font-size: 16px;
    color: #666;
    font-style: italic;
}

/* Blog Section */
.blog-section {
    margin-bottom: 80px;
}

.blog-section h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
    margin-bottom: 30px;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-post-item {
    display: block;
}

.blog-post-link {
    display: block;
    text-decoration: none;
    transition: opacity 0.2s ease;
    pointer-events: auto;
}

.blog-post-link:hover {
    opacity: 0.7;
}

.blog-post-link h3 {
    pointer-events: none;
}

.blog-post-link h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 6px;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.blog-post-link p {
    font-size: 16px;
    line-height: 1.7;
    color: #2a2a2a;
    opacity: 0.8;
    margin: 0;
}

/* About Section */
.about {
    margin-bottom: 80px;
}

.about h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
    margin-bottom: 30px;
}

.about p {
    font-size: 16px;
    line-height: 1.7;
    color: #2a2a2a;
    opacity: 0.8;
}

.about a {
    color: #1a1a1a;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: opacity 0.2s ease;
}

.about a:hover {
    opacity: 0.6;
}

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

.footer-icon {
    width: 30px;
    height: auto;
    margin-bottom: 20px;
    opacity: 0.7;
}

footer p {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}

footer p:last-child {
    margin-bottom: 0;
}

footer a {
    color: #888;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: opacity 0.2s ease;
}

footer a:hover {
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }

    header {
        margin-bottom: 60px;
    }

    .logo {
        max-width: 300px;
    }

    .description {
        margin-bottom: 60px;
    }

    .description p {
        font-size: 18px;
    }

    .coming-soon {
        padding: 40px 30px;
    }

    .contact {
        margin-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 250px;
    }

    .description p {
        font-size: 16px;
    }

    .coming-soon {
        padding: 30px 20px;
    }
}
