body {
    font-family: 'Poppins', sans-serif;
    background-color: #fde047; /* yellow-300 */
    color: #1e2b3c; /* Adjusted for readability */
}

.nav-link-active a {
    color: #000;
    font-weight: 700;
}

.nav-link-active span {
    background-color: #000;
}

.outline-button {
    background-color: transparent;
    border: 2px solid #1e293b;
    color: #1e293b;
}

.outline-button:hover {
    background-color: #1e293b;
    color: #fff;
}

.solid-button {
    background-color: #1e293b;
    color: #fff;
}

.solid-button:hover {
    background-color: #334155; /* slate-700 */
}

/* Reveal on scroll animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- NEW: Blog Post Typography --- */

/* 1. Set a max-width for readability */
.entry-content {
    max-width: 720px; /* Optimal line length */
    margin-left: auto;
    margin-right: auto;
}

/* 2. Style paragraphs for better spacing */
.entry-content p {
    line-height: 1.75; /* Increase space between lines */
    margin-bottom: 1.5em; /* Add space after each paragraph */
    font-size: 1.1rem; /* Slightly larger font for comfort */
}

/* 3. Create a clear heading hierarchy */
.entry-content h2,
.entry-content h3 {
    font-weight: 700;
    line-height: 1.3;
    margin-top: 2.5em; /* Space above headings */
    margin-bottom: 1em; /* Space below headings */
    color: #000;
}

.entry-content h2 {
    font-size: 2.25rem; /* Larger heading for major sections */
}

.entry-content h3 {
    font-size: 1.75rem; /* Slightly smaller for sub-sections */
}

/* 4. Style other common elements */
.entry-content blockquote {
    border-left: 3px solid #1e293b;
    padding-left: 1.5em;
    margin-left: 0;
    font-style: italic;
    color: #334155;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1.5em;
    padding-left: 1.5em;
}

.entry-content li {
    margin-bottom: 0.5em;
}
