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

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #111;
    background-color: #fdfdfd;
    font-size: 16px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    margin-top: 40px;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

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

header h1 {
    margin-bottom: 15px;
}

header h1 a {
    color: #111;
    text-decoration: none;
}

header h1 a:hover {
    color: #666;
}

.tagline {
    font-size: 1.3rem;
    font-weight: 300;
    color: #666;
    font-style: italic;
    margin-bottom: 0;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
}

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

.intro {
    margin-bottom: 50px;
}

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

.blog-link {
    padding: 30px 0;
    border-top: 1px solid #eee;
}

.blog-link h2 {
    margin-top: 0;
    margin-bottom: 15px;
}

.blog-link a {
    color: #111;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #ccc;
    transition: border-color 0.3s ease;
}

.blog-link a:hover {
    border-bottom-color: #111;
}

/* Blog styles */
.blog-main {
    margin-top: 40px;
}

.blog-entry {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.blog-entry:last-child {
    border-bottom: none;
}

.blog-date {
    font-size: 0.9rem;
    color: #888;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 8px;
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-snippet {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 0;
}

/* Footer */
footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #eee;
    color: #888;
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: #666;
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    color: #111;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .intro p {
        font-size: 1.1rem;
    }
    
    .blog-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .intro p {
        font-size: 1rem;
    }
}


/* Blog post page styles */
.blog-post {
    margin-bottom: 60px;
}

.blog-post-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.blog-post-header .blog-date {
    font-size: 0.9rem;
    color: #888;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 15px;
}

.blog-post-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
    margin-bottom: 0;
}

.blog-post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.blog-post-content p {
    margin-bottom: 25px;
}

.blog-post-content p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments for blog posts */
@media (max-width: 768px) {
    .blog-post-title {
        font-size: 2rem;
    }
    
    .blog-post-content {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .blog-post-title {
        font-size: 1.7rem;
    }
}


/* Blog title link styles */
.blog-title a {
    color: #111;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #666;
}

