/* Reset and base colors */
:root {
    --primary-color: #7c6e5d;
    --secondary-color: #9b8a76;
    --text-color: #222;
    --background-color: #fff;
    --accent-color: #d4c4b7;
    --spacing-unit: 1rem;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
}

body {
    font-family: var(--font-serif);
    background: var(--background-color);
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1.1rem;
}

.header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
}

.nav__logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav__links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav__links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}

.nav__links a:hover {
    color: var(--primary-color);
}

.main-article {
    max-width: 800px;
    margin: 3rem auto 2rem auto;
    padding: 2rem 1rem 3rem 1rem;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border-radius: 8px;
}

.article h1 {
    font-size: 2.7rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-sans);
}

.download-btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: background 0.2s;
}
.download-btn:hover {
    background: var(--secondary-color);
}

.article-img {
    display: block;
    margin: 2rem auto;
    max-width: 100%;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.article h2 {
    font-size: 1.7rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.article p {
    margin-bottom: 1.2rem;
}

blockquote {
    border-left: 4px solid var(--primary-color);
    background: #f8f6f3;
    color: #444;
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    font-style: italic;
    font-size: 1.15rem;
}

.footer {
    background: #faf9f7;
    border-top: 1px solid #eee;
    padding: 2rem 0 1rem 0;
    margin-top: 2rem;
}

.footer__content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer__about {
    margin-bottom: 1rem;
}

.footer__links {
    margin-bottom: 1rem;
}

.footer__links a {
    color: var(--primary-color);
    text-decoration: none;
    margin: 0 0.5rem;
    font-weight: 500;
}

.footer__links a:hover {
    text-decoration: underline;
}

.footer__social a {
    color: var(--secondary-color);
    margin: 0 0.5rem;
    text-decoration: none;
    font-size: 1.1rem;
}

.footer__social a:hover {
    color: var(--primary-color);
}

@media (max-width: 900px) {
    .main-article {
        margin: 2rem 0.5rem;
        padding: 1.5rem 0.5rem;
    }
    .nav {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 600px) {
    .main-article {
        margin: 1rem 0.2rem;
        padding: 1rem 0.2rem;
    }
    .article h1 {
        font-size: 2rem;
    }
    .article h2 {
        font-size: 1.2rem;
    }
}

/* Welcome section styles */
.welcome {
    text-align: center;
    padding: 4rem 1rem 3rem 1rem;
    max-width: 700px;
    margin: 3rem auto 2rem auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.welcome h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.welcome p {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

/* Blog page styles */
.blog-list {
    max-width: 800px;
    margin: 3rem auto 2rem auto;
    padding: 2rem 1rem 3rem 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.blog-list h1 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}
.blog-preview {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 2rem;
}
.blog-preview:last-child {
    border-bottom: none;
}
.blog-preview h2 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.blog-preview p {
    color: #444;
    margin-bottom: 0.7rem;
}
.blog-preview a {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: 500;
}

/* Blog post page styles */
.blog-post-main {
    max-width: 800px;
    margin: 3rem auto 2rem auto;
    padding: 2rem 1rem 3rem 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    margin-bottom: 2rem;
    transition: box-shadow 0.2s;
}
.blog-card {
    background: #faf9f7;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 2rem 1.5rem;
    transition: box-shadow 0.2s, background 0.2s;
}
.blog-card-link:hover .blog-card {
    box-shadow: 0 4px 16px rgba(124,110,93,0.15);
    background: #f3ede7;
}
.blog-card h2 {
    margin-bottom: 0.7rem;
    color: var(--primary-color);
    font-size: 1.3rem;
}
.blog-excerpt {
    color: #444;
    font-size: 1.05rem;
    margin-bottom: 0;
} 