/*
Theme Name: Scout Theme
Theme URI: https://runscoutgpt.com
Author: Amendment AI DO
Author URI: https://amendment.ai
Version: 11.11.11
Text Domain: scout
*/

:root {
    --color-gold: #eab308;
    --color-blue: #1d4ed8;
    --color-dark-grey: #374151;
    --color-light-grey: #f3f4f6;
    --color-white: #ffffff;
    --font-primary: 'Montserrat', sans-serif;
    --font-accent: 'Permanent Marker', cursive;
}

/* Reset & Basics */
* { box-sizing: border-box; }

body {
    background-color: var(--color-light-grey);
    color: var(--color-dark-grey);
    font-family: var(--font-primary);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

a {
    color: var(--color-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-gold);
}

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

/* Header */
.site-header {
    background-color: var(--color-light-grey);
    padding: 1rem 0; /* REDUCED PADDING: Changed from 2rem to 1rem to make the header less tall */
    border-bottom: 4px solid var(--color-gold);
}

.site-logo {
    max-height: 200px; /* Adjust height as needed */
    width: auto;
    display: block;
}
/* --- HEADER FLEXBOX LAYOUT --- */
.site-header .container {
    display: flex;
    justify-content: space-between; /* Pushes Logo left and Tagline right */
    align-items: center; /* Vertically centers both elements */
    flex-wrap: wrap; /* Allows stacking on small screens */
}
/* ------------------------------- */

.site-title-area {
    padding: 0;
}

.site-title {
    font-family: var(--font-primary);
    font-weight: 900; /* Extra bold for SCOUT look */
    font-size: 3.5rem;
    margin: 0;
    letter-spacing: -1px;
    color: var(--color-dark-grey);
    text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}

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

.site-description {
    font-family: var(--font-accent); /* Handwritten style for GPT look */
    color: var(--color-blue);
    font-size: 2.5rem;
    margin: 0;
    text-align: right; /* Aligns the text to the right side */
    transform: rotate(-2deg); /* Slight tilt like handwriting */
    padding: 0;
}

/* Navigation */
.main-navigation {
    background: var(--color-dark-grey);
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.main-navigation a {
    color: var(--color-white);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.main-navigation a:hover {
    color: var(--color-gold);
}

/* Main Content */
.site-main {
    padding: 2rem 0;
}

.post {
    background: var(--color-white);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--color-blue);
}

.entry-title {
    margin-top: 0;
    font-size: 2rem;
    color: var(--color-dark-grey);
}

.entry-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.entry-content {
    color: #4b5563;
}

/* Footer */
.site-footer {
    background-color: var(--color-dark-grey);
    color: var(--color-white);
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 4px solid var(--color-blue);
}

.site-footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive adjustment for small screens */
@media (max-width: 600px) {
    .site-header .container {
        flex-direction: column;
        text-align: center;
    }

    .site-description {
        text-align: center;
        margin-top: 10px; /* Add some space below title */
        transform: none; /* Remove tilt on small screens for stability */
    }
}