
/* Import Source Sans Pro with extra-light and light weights */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400&display=swap');


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

:root {
    --background: #fff;
    --text: #333;
    --text-secondary: #999;
    --primary: #cc0000;
    --border: #eee;
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--background);
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Header Styles */
.site-header {
    margin: 1rem 0 2rem 0;  
}

.header-container {
    position: relative;
    text-align: left;
}


.site-title {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 2.5rem;
    font-weight: 200;
    margin: 2rem 0;
    letter-spacing: -0.02em;
    text-align: left;
    color: #444;
}



.site-title a {
    color: inherit;
    text-decoration: none;
}

.social-icons {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 0.8rem;
}

.social-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.nav-container {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-top: 1rem;
}

.site-nav {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
}

.nav-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 1rem;
}

/* Content Styles */
.content {
    margin: 2rem 0;
}

.post-title {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.post-title a {
    color: var(--text);
    text-decoration: none;
}

.post-meta {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Footer Styles */
.site-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.site-footer .social-links {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.site-footer .social-icon {
    color: var(--primary);
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Add these rules to your static/css/style.css */

/* Remove scrollbar */
::-webkit-scrollbar {
    display: none;
}

/* Hide any other toggle boxes or scroll indicators */
.theme-toggle, 
[role="navigation"] aside {
    display: none !important;
}

/* If needed, add MS Edge compatibility */
* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Add to your static/css/style.css */

.home-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 0;
}

.home-content h1 {
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.home-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.home-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.home-content li {
    margin-bottom: 0.5rem;
}

.home-content a {
    color: var(--primary);
    text-decoration: none;
}

.home-content a:hover {
    text-decoration: underline;
}

.recent-posts {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.recent-posts h2 {
    font-weight: 300;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.post-preview {
    margin-bottom: 2rem;
}

.preview-title {
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.preview-title a {
    color: var(--text);
    text-decoration: none;
}

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

.preview-meta {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.preview-content {
    color: var(--text-secondary);
}

/* Update the home-content styles in your static/css/style.css */

.home-content {
    max-width: 800px;  /* Match body max-width */
    margin: 0;         /* Remove auto margins */
    padding: 2rem 0;
}

.home-content h1 {
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.home-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    padding: 0;       /* Remove any padding */
}

.home-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    padding: 0;       /* Remove any padding */
}

.home-content li {
    margin-bottom: 0.5rem;
}

/* Style for all headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 200;  /* Extra light weight */
    color: #444;
}

/* Specific sizes for different heading levels */
h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.75rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}