@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600;700&family=Karla:wght@300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #f7f3ed;
    --surface: #fffdf9;
    --earth: #5c4a3d;
    --earth-light: #8b7355;
    --moss: #4a5d4a;
    --moss-light: #6b8e6b;
    --clay: #c4a77d;
    --terracotta: #c4704b;
}

body {
    font-family: 'Karla', sans-serif;
    background: var(--bg);
    color: var(--earth);
    line-height: 1.8;
    min-height: 100vh;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    text-align: center;
    padding: 3rem 0;
    border-bottom: 1px solid var(--clay);
    margin-bottom: 3rem;
}

.logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--moss);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo svg {
    width: 30px;
    height: 30px;
    fill: var(--bg);
}

header h1, header a {
    font-family: 'Fraunces', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--earth);
    letter-spacing: -0.02em;
    text-decoration: none;
}

.tagline {
    color: var(--earth-light);
    font-size: 1rem;
    margin-top: 0.5rem;
    font-weight: 300;
}

.layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 4rem;
}

.sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.sidebar h2 {
    font-family: 'Fraunces', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--moss);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px dashed var(--clay);
}

.sidebar li:last-child {
    border-bottom: none;
}

.sidebar a {
    color: var(--earth);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.sidebar a:hover {
    color: var(--terracotta);
}

main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

article {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--moss);
    box-shadow: 0 4px 20px rgba(92, 74, 61, 0.08);
}

article h2 {
    font-family: 'Fraunces', serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

article h2 a {
    color: var(--earth);
    text-decoration: none;
    transition: color 0.3s;
}

article h2 a:hover {
    color: var(--terracotta);
}

.meta {
    font-size: 0.85rem;
    color: var(--moss-light);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

article p {
    color: var(--earth-light);
    margin-bottom: 1rem;
    font-weight: 300;
}

/* Excerpt styles */
.excerpt .business-info {
    background: rgba(74, 93, 74, 0.08);
    border-left: 3px solid var(--moss);
    padding: 1rem 1.25rem;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
}

.excerpt .business-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.excerpt .business-info p:last-child {
    margin-bottom: 0;
}

.excerpt .read-more {
    display: inline-block;
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: color 0.3s;
}

.excerpt .read-more:hover {
    color: var(--moss);
}

.excerpt .categories {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--clay);
    font-size: 0.85rem;
    font-weight: 500;
}

.excerpt .categories .label {
    color: var(--earth-light);
    margin-right: 0.5rem;
}

.excerpt .categories a {
    color: var(--earth-light);
    text-decoration: none;
}

.excerpt .categories a:hover {
    color: var(--terracotta);
}

/* Post page specific */
.post-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem;
}

.post-container header {
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--moss);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.back-link:hover {
    color: var(--terracotta);
}

.post-container article {
    padding: 3rem;
}

article h1 {
    font-family: 'Fraunces', serif;
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-align: center;
}

.post-container .meta {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px dashed var(--clay);
}

.content p {
    color: var(--earth-light);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.content h2 {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
    color: var(--earth);
}

.content blockquote {
    border-left: 3px solid var(--moss);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: rgba(74, 93, 74, 0.08);
    font-style: italic;
    color: var(--earth);
    border-radius: 0 8px 8px 0;
}

.content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    color: var(--earth-light);
}

.content li {
    margin-bottom: 0.75rem;
    font-weight: 300;
}

@media (max-width: 768px) {
    .layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sidebar {
        position: static;
    }
    
    header {
        padding: 2rem 0;
    }
    
    header h1, header a {
        font-size: 2rem;
    }
    
    .post-container article {
        padding: 2rem 1.5rem;
    }
    
    article h1 {
        font-size: 1.75rem;
    }
    
    .container, .post-container {
        padding: 1rem;
    }
}

