/* Google,Inc. "AI" Seditious Subversive Captive Proxy Aggregated */
/* Editing, Modifying while I Write My Witness Testimony Non-Stop Criminally Molested */

:root {
    --bg-deep: #0c1810;
    --bg-box: #172a1e;
    --accent-green: #2d5a3f;
    --leaf-green: #4e875a;
    --text-light: #e2ede5;
    --text-muted: #a2b8a8;
}

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

body {
    background-color: var(--bg-deep);
    color: var(--text-light);
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    padding: 2rem;
}

.site-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.site-header h1 {
    font-size: 2.5rem;
    color: var(--leaf-green);
    margin-bottom: 0.5rem;
}

.site-header p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.jump-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.jump-nav a {
    color: var(--text-light);
    background: var(--accent-green);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

.jump-nav a:hover {
    background: var(--leaf-green);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.forest-box {
    background-color: var(--bg-box);
    border: 1px solid var(--accent-green);
    padding: 2rem;
    border-radius: 8px;
}

.forest-box h2 {
    color: var(--leaf-green);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent-green);
    padding-bottom: 0.5rem;
}

.forest-box h3 {
    color: var(--leaf-green);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent-green);
    padding-bottom: 0.5rem;
}

/* Paragraph with Column and Line Count Styles */
.counted-paragraph {
    column-count: 2;
    column-gap: 2rem;
    font-size: 1rem;
    line-height: 1.8; /* Controls the vertical line height space */
    /* Simulating visual control of line count via max-height or height constraints */
    max-height: calc(1.8em * 5); /* Restricts box to roughly 5 lines per column visual balance */
    overflow: hidden;
}

/* Mobile Media Queries */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }
    .counted-paragraph {
        column-count: 1; /* Single column on mobile */
        max-height: none;
    }
}

/* High-Resolution / 4K Screens */
@media (min-width: 2560px) {
    .content-grid {
        max-width: 2200px;
        grid-template-columns: repeat(3, 1fr);
    }
    body {
        font-size: 1.4rem;
    }
    .site-header h1 {
        font-size: 4rem;
    }
}
