@font-face {
    font-family: 'HersheySimplex';
    src: url('assets/fonts/AVHersheySimplexMedium.woff2') format('woff2'),
         url('assets/fonts/AVHersheySimplexMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Shows a fallback font until this one loads */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'HersheySimplex', sans-serif;
}

body {
    background-color: #eeeeee; /* Subtle light grey */
    margin: 0;
    padding: 0;
    /* This ensures the background covers the full screen height */
    min-height: 100vh; 
}

p {
    font-size: 1.2rem;
    line-height: 1; /* Adds breathing room between lines */
    /* margin-bottom: 20px;
    color: #444; */
}

/* Headings Scale */
h1 {
    font-size: 2rem;
}

h2, h3 {
    font-size: 1.2rem;
}


/* Header Styling */
.blog-header {
    text-align: center;
    padding: 40px 0 100px;
}

.header-logo {
    /* border-radius: 50%; */
    margin-top: 20px;
    margin-bottom: 20px;
    width: 350px;
    height: 100px;
}

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

.content-grid {
    display: grid;
    /* Column 1 is 150px fixed, Column 2 takes the remaining space */
    grid-template-columns: 150px 1fr; 
    gap: 30px; /* This creates the physical 'gap' between the two areas */
    align-items: start; /* Prevents the shorter column from stretching */
}

/* Add background colors temporarily to see the separate areas */
.sidebar {
    padding: 10px;
    text-align: right; 
}

.main-content {
    padding: 10px;
}


/* Main Content (Right) */
.post {
    margin-bottom: 0;
}

.post h2 {
    margin-bottom: 10px;
    color: #333;
}

.divider {
    text-align: center; 
}


.blog-footer {
    text-align: center;      /* Centers the text */
    padding: 10px 0;         /* Adds space above and below the text */
    margin-top: 100px;        /* Pushes the footer away from the content grid */
    /* border-top: 1px solid #eee;  */
    color: #777;
    font-size: 1rem;
    width: 100%;             /* Ensures it spans the full width */
    /* position: absolute; */
    bottom: 0; /* Position the footer at the bottom */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .sidebar {
        text-align: left; /* Changes back to left on mobile */
    }
    
    .content-grid {
        grid-template-columns: 1fr; /* Stacks the columns vertically */
        gap: 10px;
    }
}

