/* Main site styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    color: #2a2a2a;
    background: #faf8f3;
    height: 100vh;
    overflow: hidden;
}

.logo {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #faf8f3;
    z-index: 10;
}

.logo img {
    height: 40px;
    width: auto;
}

.container {
    display: flex;
    height: 100vh;
    padding-top: 10vh;
}

.image {
    width: 50%;
    background: #f5f0e8;
    background-size: cover;
    background-position: center;
}

.content {
    width: 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #faf8f3;
}

h2 {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    font-family: Georgia, serif;
}

p {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin: 0 0 36px 0;
    font-weight: 300;
    font-family: Georgia, serif;
}

a {
    color: #2a2a2a;
    text-decoration: none;
    border-bottom: 1px solid #2a2a2a;
    font-size: 16px;
    font-family: Georgia, serif;
    transition: all 0.2s ease;
}

a:hover {
    color: #666;
    border-bottom-color: #666;
}

/* Footer styles */
.footer {
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #faf8f3;
    padding: 0.4em 0 0.7em 0;
    z-index: 20;
    border-top: 1px solid #e0ddd7;
    font-size: 13px;
}
.footer-links {
    margin-bottom: 0.1em;
}
.footer-links a {
    font-size: 13px;
}
.footer-copyright {
    color: #888;
    font-size: 11px;
}

/* Journal (blog) styles */
.journal-main {
    max-width: 700px;
    margin: 60px auto 0 auto;
    padding: 0 20px 120px 20px; /* bottom padding for footer */
}

.journal-main h1 {
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.article-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.article {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 2rem 2rem 1.5rem 2rem;
    transition: box-shadow 0.2s;
    border: 1px solid #f0ede7;
}
.article:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.article h2 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 1px;
}
.article h2 a {
    border-bottom: none;
    color: #2a2a2a;
}
.article-meta {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 0.7rem;
}
.article-excerpt {
    font-size: 1.08rem;
    color: #3a3a3a;
    margin-bottom: 0;
}

/* Journal header styles */
.journal-header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2.2rem;
    margin-bottom: 2.2rem;
}
.journal-header .logo {
    height: 32px;
    width: auto;
    display: block;
    margin: 0 auto 0.7rem auto;
    position: static;
}
.journal-header nav {
    position: absolute;
    top: 0;
    right: 0;
    text-align: right;
}
.journal-header nav a {
    font-size: 1rem;
    border-bottom: 1px solid #2a2a2a;
    color: #2a2a2a;
    padding: 0.2em 0.5em;
}

/* Mobile */
@media (max-width: 768px) {
    body {
        overflow-y: auto;
    }
    .container {
        flex-direction: column;
    }
    .image {
        width: 100%;
        height: 40vh;
    }
    .content {
        width: 100%;
        padding: 40px 30px;
    }
    .logo img {
        height: 30px;
    }
    h2 {
        font-size: 12px;
    }
    p, a {
        font-size: 14px;
    }
    .footer {
        font-size: 12px;
    }
    .footer-links a {
        font-size: 12px;
    }
    .footer-copyright {
        font-size: 10px;
    }

    .journal-main {
        max-width: 98vw;
        margin-top: 30px;
        padding: 0 5px 90px 5px;
    }
    .journal-main h1 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }
    .article {
        padding: 1.1rem 0.7rem 1rem 0.7rem;
    }
    .article h2 {
        font-size: 1.1rem;
    }
    .article-excerpt {
        font-size: 0.98rem;
    }

    .journal-header {
        margin-top: 1.2rem;
        margin-bottom: 1.2rem;
    }
    .journal-header .logo {
        height: 22px;
        margin-bottom: 0.4rem;
    }
    .journal-header nav a {
        font-size: 0.95rem;
        padding: 0.2em 0.3em;
    }
} 