@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
    --primary-color: #d90429; /* PPOST Brand Red */
    --accent-color: #d90429;
    --text-color: #111111;
    --bg-color: #ffffff;
    --card-bg: #ffffff;
    --brand-red: #d90429; 
    --bg-white: #ffffff;
    --text-black: #111111;
}

body {
    font-family: 'Lora', Georgia, serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Headings and UI Elements use Sans-Serif */
h1, h2, h3, h4, h5, h6, .navbar, .meta, .sidebar-info, .post-date, footer {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Navbar */
.navbar {
    background: #ffffff;
    border-bottom: 3px solid var(--primary-color);
    color: var(--text-color);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .brand img {
    height: 90px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Footer */
footer {
    text-align: center;
    padding: 4rem 0;
    color: #718096;
    font-size: 0.85rem;
}
