
:root {
    --primary-color: #0d6efd;
    --text-color: #212529;
    --bg-color: #ffffff;
    --card-bg: #ffffff;
    --border-color: #dee2e6;
    --link-color: #0d6efd;
    --link-hover-color: #0a58ca;
}
body {
    font-family: 'Lora', serif;
    line-height: 1.7;
    margin: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    color: #111827;
    font-weight: 700;
}
.container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}
a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.2s;
}
a:hover {
    color: var(--link-hover-color);
    text-decoration: underline;
}
header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}
header h1 {
    font-size: 2.5rem;
    margin: 0;
}
.post-list {
    list-style: none;
    padding: 0;
}
.post-list li {
    margin-bottom: 2rem;
    background-color: var(--card-bg);
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.post-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}
.post-list h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.75rem;
}
.post-list .date {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.post-content p {
    text-align: justify;
    text-indent: 2em;
    margin-bottom: 1em;
}
.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.post-content pre {
    background-color: #f8f9fa;
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: 6px;
    overflow-x: auto;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
}
.post-content code {
    background-color: #e9ecef;
    padding: 0.2em 0.4em;
    margin: 0;
    font-size: 85%;
    border-radius: 3px;
}
.post-content pre code {
    background: none;
    padding: 0;
    margin: 0;
    font-size: inherit;
    border-radius: 0;
}
.post-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    margin-left: 0;
    color: #495057;
    font-style: italic;
}
.contact-section {
    margin-top: 3rem;
    padding: 2rem;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}
.contact-button, .instagram-button {
    display: inline-block;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.2s;
}
.contact-button {
    background-color: var(--primary-color);
}
.contact-button:hover {
    background-color: var(--link-hover-color);
    color: #fff;
    text-decoration: none;
}
.instagram-button {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    margin-left: 0.5rem;
}
.instagram-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    color: #fff;
    text-decoration: none;
}
footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9em;
    color: #6c757d;
}
