/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0a0e1a;
    --navy-light: #131829;
    --navy-card: #1a1f33;
    --red: #c41e3a;
    --red-dark: #8b0000;
    --red-bright: #e2233f;
    --white: #ffffff;
    --gray: #a0a8b8;
    --gray-light: #c5cad6;
    --green: #2d8659;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: var(--navy);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== VOTE BANNER ===== */
.vote-banner {
    background: var(--red);
    text-align: center;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.bottom-banner {
    position: relative;
    top: auto;
}

.banner-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-text {
    font-family: 'Arial', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--white);
    text-transform: uppercase;
}

.banner-sub {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.85);
    margin-top: 2px;
}

/* ===== NAV ===== */
.desktop-nav {
    background: var(--navy-light);
    border-bottom: 1px solid rgba(196,30,58,0.3);
    padding: 8px 0;
    position: sticky;
    top: 48px;
    z-index: 999;
    display: none;
}

.desktop-nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.desktop-nav a {
    font-family: 'Arial', sans-serif;
    font-size: 0.78rem;
    color: var(--gray-light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.desktop-nav a:hover {
    color: var(--red-bright);
}

.mobile-nav {
    background: var(--navy-light);
    border-bottom: 1px solid rgba(196,30,58,0.3);
    position: sticky;
    top: 48px;
    z-index: 999;
}

.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.nav-logo {
    font-family: 'Arial', sans-serif;
    font-weight: 900;
    font-size: 0.85rem;
    color: var(--red-bright);
    letter-spacing: 1px;
}

.hamburger {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-links {
    display: none;
    flex-direction: column;
    padding: 0 20px 15px;
}

.nav-links.open {
    display: flex;
}

.nav-links a {
    font-family: 'Arial', sans-serif;
    color: var(--gray-light);
    text-decoration: none;
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

@media (min-width: 900px) {
    .desktop-nav { display: block; }
    .mobile-nav { display: none; }
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 80px 20px 60px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(196,30,58,0.08) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(196,30,58,0.3);
}

.hero-title .red {
    color: var(--red-bright);
    display: block;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--white);
    margin-bottom: 10px;
    font-style: italic;
}

.hero-date {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    color: var(--red-bright);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

/* ===== STAT BOXES ===== */
.stat-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

@media (min-width: 600px) {
    .stat-boxes {
        grid-template-columns: repeat(5, 1fr);
    }
}

.stat-box {
    background: var(--navy-card);
    border: 1px solid rgba(196,30,58,0.3);
    border-radius: 8px;
    padding: 20px 10px;
    text-align: center;
}

.stat-number {
    font-family: 'Arial', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--red-bright);
    line-height: 1;
}

.stat-label {
    font-family: 'Arial', sans-serif;
    font-size: 0.72rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 6px;
}

.hero-intro {
    font-size: 1.05rem;
    color: var(--gray-light);
    margin-top: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SECTIONS ===== */
.section {
    padding: 60px 0;
}

.alt-bg {
    background: var(--navy-light);
}

.section-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-title .red {
    color: var(--red-bright);
}

.section-lead {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 35px;
    max-width: 800px;
}

.case-number {
    font-family: 'Arial', sans-serif;
    color: var(--red-bright);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

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

.sub-heading {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 35px 0 20px;
    color: var(--red-bright);
}

/* ===== PULL QUOTES ===== */
.pull-quote {
    background: var(--red-dark);
    border-left: 4px solid var(--red-bright);
    padding: 20px 25px;
    margin: 20px 0;
    font-size: 1.15rem;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.pull-quote-small {
    background: rgba(196,30,58,0.15);
    border-left: 3px solid var(--red-bright);
    padding: 12px 16px;
    margin: 10px 0;
    font-size: 0.95rem;
    font-style: italic;
    border-radius: 0 6px 6px 0;
}

.quote-source {
    font-family: 'Arial', sans-serif;
    font-size: 0.8rem;
    color: var(--gray);
    display: block;
    margin-top: 5px;
    font-style: normal;
}

/* ===== EXPERT CARDS ===== */
.expert-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

@media (min-width: 700px) {
    .expert-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.expert-card {
    background: var(--navy-card);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.05);
}

.expert-card h3 {
    color: var(--red-bright);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

/* ===== VS BOX ===== */
.vs-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
}

@media (min-width: 700px) {
    .vs-box {
        flex-direction: row;
        align-items: stretch;
    }
}

.vs-side {
    flex: 1;
    padding: 25px;
    border-radius: 10px;
}

.vs-good {
    background: rgba(45,134,89,0.1);
    border: 1px solid rgba(45,134,89,0.3);
}

.vs-bad {
    background: rgba(196,30,58,0.1);
    border: 1px solid rgba(196,30,58,0.3);
}

.vs-side h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vs-side ul {
    list-style: none;
}

.vs-side li {
    padding: 6px 0;
    font-size: 0.95rem;
    padding-left: 20px;
    position: relative;
}

.vs-side li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--red-bright);
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Arial', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--gray);
}

/* ===== GAL QUOTES ===== */
.gal-quotes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 20px 0;
}

@media (min-width: 600px) {
    .gal-quotes {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gal-quote {
    background: var(--navy-card);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--green);
}

.gal-quote p {
    font-style: italic;
    font-size: 1rem;
}

/* ===== CONTRAST ===== */
.contrast-statement {
    background: rgba(196,30,58,0.1);
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    font-size: 1.05rem;
    border: 1px solid rgba(196,30,58,0.2);
}

.contrast-box {
    background: var(--navy-card);
    border-radius: 10px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid rgba(255,255,255,0.05);
}

.contrast-box h3 {
    color: var(--green);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contrast-box p {
    margin-bottom: 12px;
}

.contrast-final {
    font-weight: 700;
    color: var(--red-bright) !important;
    font-size: 1.15rem !important;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    margin-top: 15px;
}

/* ===== QUOTE BOARD ===== */
.quote-board {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 25px 0;
}

@media (min-width: 600px) {
    .quote-board {
        grid-template-columns: repeat(2, 1fr);
    }
}

.quote-tile {
    background: var(--red-dark);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(196,30,58,0.4);
}

.quote-tile p {
    font-size: 1rem;
    line-height: 1.5;
    font-style: italic;
}

/* ===== RELIGION ===== */
.religion-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

@media (min-width: 600px) {
    .religion-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.religion-card {
    background: var(--navy-card);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.05);
}

.religion-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.religion-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--white);
}

.religion-context {
    font-size: 0.9rem;
    color: var(--gray-light);
    margin-top: 10px;
}

.ignored-box {
    background: rgba(196,30,58,0.1);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid rgba(196,30,58,0.2);
    margin-bottom: 25px;
}

.ignored-list {
    list-style: none;
}

.ignored-list li {
    padding: 10px 0 10px 25px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ignored-list li::before {
    content: '⛔';
    position: absolute;
    left: 0;
}

.supervisor-box {
    background: var(--navy-card);
    border-radius: 10px;
    padding: 25px;
    margin-top: 25px;
    border: 1px solid rgba(255,255,255,0.05);
}

.supervisor-box h4 {
    margin-bottom: 12px;
    color: var(--red-bright);
}

/* ===== CONFLICT TIMELINE ===== */
.conflict-timeline {
    margin: 30px 0;
}

.timeline-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.timeline-item.highlight {
    background: rgba(196,30,58,0.08);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(196,30,58,0.2);
}

.timeline-date {
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    color: var(--red-bright);
    min-width: 120px;
    font-size: 0.9rem;
}

.timeline-content {
    flex: 1;
}

.differential-box {
    background: var(--navy-card);
    border-radius: 10px;
    padding: 25px;
    margin-top: 25px;
    border: 1px solid rgba(255,255,255,0.05);
}

.differential-box h3 {
    color: var(--red-bright);
    margin-bottom: 15px;
    font-size: 1.15rem;
}

.differential-box ul {
    list-style: none;
}

.differential-box li {
    padding: 8px 0 8px 25px;
    position: relative;
}

.differential-box li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--red-bright);
}

/* ===== DUE PROCESS ===== */
.due-process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 600px) {
    .due-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .due-process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dp-card {
    background: var(--navy-card);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.dp-number {
    font-family: 'Arial', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--red-bright);
    line-height: 1;
    margin-bottom: 10px;
    opacity: 0.6;
}

.dp-card h4 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.dp-card p {
    font-size: 0.9rem;
    color: var(--gray-light);
}

/* ===== EVIDENCE ===== */
.evidence-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

@media (min-width: 600px) {
    .evidence-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.evidence-card {
    background: var(--navy-card);
    border-radius: 10px;
    padding: 20px;
    border-left: 3px solid var(--green);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-right: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.evidence-card h4 {
    color: var(--green);
    margin-bottom: 8px;
    font-size: 1rem;
}

.impact-box {
    background: rgba(196,30,58,0.1);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(196,30,58,0.2);
}

.impact-box h3 {
    color: var(--red-bright);
    margin-bottom: 12px;
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.comp-col {
    padding: 15px 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    font-weight: 900;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comp-father {
    background: var(--red-dark);
    color: var(--white);
}

.comp-mother {
    background: rgba(45,134,89,0.3);
    color: var(--white);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.comparison-row .comp-col {
    padding: 12px 15px;
    font-size: 0.88rem;
    text-align: center;
    font-style: italic;
}

.comparison-row .comp-father {
    background: rgba(196,30,58,0.12);
}

.comparison-row .comp-mother {
    background: rgba(45,134,89,0.12);
}

.mother-facts {
    background: var(--navy-card);
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
    border: 1px solid rgba(255,255,255,0.05);
}

.mother-facts ul {
    list-style: none;
}

.mother-facts li {
    padding: 10px 0 10px 25px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.mother-facts li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--red-bright);
}

/* ===== REVERSALS ===== */
.reversal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 600px) {
    .reversal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.reversal-card {
    background: var(--navy-card);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.05);
    border-top: 3px solid var(--red-bright);
}

.reversal-card h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.citation {
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 12px;
}

/* ===== RECUSAL ===== */
.recusal-timeline {
    margin: 25px 0;
}

.recusal-item {
    background: var(--navy-card);
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-left: 3px solid var(--red-bright);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-right: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.recusal-date {
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    color: var(--red-bright);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.legal-box {
    background: rgba(196,30,58,0.08);
    border-radius: 10px;
    padding: 25px;
    margin-top: 25px;
    border: 1px solid rgba(196,30,58,0.2);
}

.legal-box h3 {
    color: var(--red-bright);
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.legal-box p {
    margin-bottom: 12px;
}

/* ===== BOTTOM LINE ===== */
.bottom-line-content {
    background: var(--navy-card);
    border-radius: 10px;
    padding: 30px;
    margin: 25px 0;
    border: 1px solid rgba(196,30,58,0.2);
}

.bottom-line-list {
    list-style: none;
}

.bottom-line-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 1rem;
}

.bottom-line-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--red-bright);
    font-weight: 900;
    font-size: 1.1rem;
}

.bottom-statement {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-top: 30px;
    color: var(--red-bright);
    padding: 20px;
}

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
    padding: 60px 20px;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.cta-date {
    font-family: 'Arial', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 5px;
}

.cta-location {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-bottom: 25px;
}

@media (min-width: 600px) {
    .cta-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.cta-btn {
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 30px;
    border-radius: 50px;
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.cta-btn:hover {
    background: var(--white);
    color: var(--red-dark);
}

.cta-tagline {
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.95);
}

/* ===== FOOTER ===== */
footer {
    background: var(--navy-light);
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

footer p {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 8px;
}

.footer-disclaimer {
    max-width: 600px;
    margin: 8px auto;
    font-size: 0.78rem;
    line-height: 1.5;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== BLAME BOX ===== */
.blame-box {
    background: var(--navy-card);
    border-radius: 10px;
    padding: 35px;
    margin: 25px 0;
    border: 1px solid rgba(196,30,58,0.2);
}

.blame-box p {
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.blame-final {
    font-weight: 700;
    color: var(--red-bright) !important;
    font-size: 1.15rem !important;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 18px;
    margin-top: 18px;
}

/* ===== INLINE CTA ===== */
.inline-cta {
    text-align: center;
    margin: 30px 0 10px;
    padding: 18px 20px;
    background: rgba(196,30,58,0.12);
    border: 1px solid rgba(196,30,58,0.3);
    border-radius: 8px;
}

.inline-cta p {
    font-family: 'Arial', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--red-bright);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.inline-cta .cta-small {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    margin-top: 5px;
}
