/* Citizen Steve — Simplified Theme */

:root {
    --navy: #191f41;
    --deep-blue: #3b659f;
    --red: #df3133;
    --red-dark: #b4282a;
    --white: #FFFFFF;
    --off-white: #f8f8f8;
    --text: #2C2C2C;
    --text-light: #666;
    --border: #e0e0e0;
}

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

body {
    font-family: 'Source Sans 3', Georgia, 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
}

.container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Hero Header (homepage) ── */

.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(25, 31, 65, 0.2) 0%,
        rgba(25, 31, 65, 0.80) 42%,
        rgba(25, 31, 65, 0.95) 100%
    );
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    z-index: 1;
    color: var(--white);
    text-align: right;
    padding: 2rem 24px;
    width: 100%;
    box-sizing: border-box;
}

.hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--white);
    margin: 0 0 0.4rem 0;
    letter-spacing: 0.03em;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
}

.hero .tagline {
    font-size: 1.35rem;
    font-weight: 700;
    opacity: 0.95;
    margin-bottom: 0.6rem;
    line-height: 1.5;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.hero .schedule {
    font-size: 1.15rem;
    opacity: 0.85;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* ── Text Color Utilities ── */

.text-red {
    color: var(--red);
}

.text-blue {
    color: var(--deep-blue);
}

.text-red-bold {
    color: var(--red);
    font-weight: 700;
}

.text-blue-bold {
    color: var(--deep-blue);
    font-weight: 700;
}

/* ── Compact Header (subpages) ── */

.compact {
    background-color: var(--navy);
    padding: 0.55rem 0;
    border-bottom: 3px solid var(--red);
}

.compact .site-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    line-height: 1;
    text-decoration: none;
    border: none;
}

.header-eagle {
    display: inline-block;
    font-size: 1.4em;
    vertical-align: middle;
    line-height: 1;
    background: white;
    border-radius: 50%;
    width: 1.4em;
    height: 1.4em;
    text-align: center;
    padding-top: 0.14em;
}

.compact .site-title:hover {
    opacity: 0.85;
    border: none;
}

/* ── Main Content ── */

main {
    padding: 3rem 0;
    min-height: 50vh;
}

/* ── Typography ── */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--deep-blue);
    margin: 2rem 0 0.75rem 0;
    line-height: 1.3;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }

h1:first-child { margin-top: 0; }

p {
    margin-bottom: 1rem;
}

/* ── Homepage Emphasis ── */

.home-title {
    font-size: 2.2rem;
}

.home-mantra {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 0.3rem;
}

.home-fists {
    font-size: 1.8rem;
    letter-spacing: 0.15em;
    text-align: center;
    margin-bottom: 1.2rem;
}

strong {
    font-weight: 700;
}

/* ── Links ── */

a {
    color: var(--red);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.18em;
    transition: color 0.2s;
}

a:hover {
    color: var(--red-dark);
    text-decoration-thickness: 2px;
}

/* ── Lists ── */

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.4rem;
}

/* ── Blockquotes ── */

blockquote {
    border-left: 4px solid var(--deep-blue);
    padding-left: 1.25rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-light);
}

/* ── Tables ── */

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

th {
    background-color: var(--deep-blue);
    color: var(--white);
    padding: 0.65rem 0.75rem;
    text-align: left;
    font-weight: 600;
}

td {
    padding: 0.65rem 0.75rem;
    border-bottom: 1px solid var(--border);
}

tr:nth-child(even) {
    background-color: var(--off-white);
}

/* ── Buttons ── */

.button {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    background-color: var(--red);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.2s;
    border: none;
}

.button:hover {
    background-color: var(--red-dark);
    color: var(--white);
    text-decoration: none;
}

.button-blue {
    background-color: var(--deep-blue);
}

.button-blue:hover {
    background-color: var(--navy);
}

/* ── Session List (homepage) ── */

.session-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.session-list li {
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--border);
    margin: 0;
}

.session-list li:last-child {
    border-bottom: none;
}

.session-number {
    font-weight: 700;
    color: var(--deep-blue);
    margin-right: 0.3rem;
}

.session-list a {
    font-weight: 800;
    font-size: 1.35rem;
    line-height: 1.35;
}

.session-date {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.15rem;
}

.coming-soon {
    color: var(--text-light);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.35;
}

.coming-soon-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    background: var(--off-white);
    border: 1px solid var(--border);
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* ── About Section (homepage) ── */

.about-section {
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 2px solid var(--border);
}

.about-section h2 {
    margin-top: 0;
}

.disclaimer {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background-color: var(--off-white);
    border-left: 4px solid var(--deep-blue);
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ── Horizontal Rule ── */

hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2rem 0;
}

/* ── Footer ── */

footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 1.5rem 0;
    margin-top: 4rem;
    font-size: 0.9rem;
    text-align: center;
}

footer a {
    color: var(--white);
    text-decoration: underline;
}

footer p {
    margin-bottom: 0.3rem;
}

/* ── Article Callout Box ── */

.callout {
    border: 3px solid var(--red);
    border-left: 6px solid var(--red);
    background: #fff5f5;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    font-weight: 600;
    font-size: 1.05rem;
}

.callout-blue {
    border-color: var(--deep-blue);
    background: #f0f0ff;
}

/* ── Responsive ── */

@media (max-width: 820px) {
    .hero {
        height: 280px;
    }

    .hero-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 30% center;
    }

    .hero-content {
        padding: 1.5rem 20px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero .tagline {
        font-size: 1rem;
        font-weight: 700;
    }

    .hero .schedule {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 240px;
    }

    .hero-content {
        padding: 1.2rem 16px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero .tagline {
        font-size: 0.9rem;
    }

    .hero .schedule {
        font-size: 0.8rem;
    }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
}
