/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c41e3a;
    --secondary-color: #8b1a2d;
    --dark-bg: #1a1a1a;
    --light-bg: #f5f5f5;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --accent: #ff6b6b;
    --warning: #ffd93d;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

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

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

/* Header and Navigation */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(26, 26, 26, 0.8), rgba(139, 26, 45, 0.85)), url('./faith.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 20px
    );
}

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

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Statistics Section */
.statistics {
    background: var(--white);
    padding: 4rem 2rem;
    border-bottom: 4px solid var(--primary-color);
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-source {
    font-size: 0.85rem;
    color: var(--text-light);
}

.stat-source a {
    color: var(--text-light);
    text-decoration: underline;
}

/* Section Headings */
h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Hypocrisy Section */
.hypocrisy {
    background: var(--light-bg);
    padding: 5rem 2rem;
}

.contradiction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.contradiction-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.chevin-says {
    border-top: 5px solid var(--warning);
}

.ice-does {
    border-top: 5px solid var(--primary-color);
}

.contradiction-item blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-dark);
    padding: 1.5rem;
    background: var(--light-bg);
    border-left: 4px solid var(--warning);
    margin: 1.5rem 0;
}

.ice-does blockquote {
    border-left-color: var(--primary-color);
}

.source {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.trafficking-evidence {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.evidence-item {
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.evidence-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.evidence-item ul {
    list-style: none;
    padding-left: 0;
}

.evidence-item ul li {
    padding: 0.3rem 0;
    font-weight: 600;
}

.hypocrisy-conclusion {
    background: var(--primary-color);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
}

.hypocrisy-conclusion h3 {
    color: var(--white);
}

/* Our Story Section */
.our-story {
    background: var(--white);
    padding: 5rem 2rem;
}

.story-intro {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-dark);
}

.timeline {
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 4px solid var(--white);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-date {
    text-align: right;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    padding: 0.5rem 2rem 0 0;
}

.timeline-content {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.letter-preview {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.letter-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.letter-content ol, .letter-content ul {
    margin: 1rem 0 1rem 2rem;
}

.letter-content li {
    margin: 0.5rem 0;
}

.letter-content blockquote {
    font-style: italic;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--light-bg);
    border-left: 4px solid var(--primary-color);
}

.letter-support {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.silence-response {
    background: var(--dark-bg);
    color: var(--white);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
}

.silence-response h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

/* ICE Reality Section */
.ice-reality {
    background: var(--light-bg);
    padding: 5rem 2rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.reality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.reality-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.reality-stat {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stories-section {
    margin-top: 4rem;
}

.stories-section h3 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.story-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.story-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.story-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.story-card blockquote {
    font-style: italic;
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.story-attribution {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.reality-conclusion {
    background: var(--dark-bg);
    color: var(--white);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 4rem;
}

.reality-conclusion h3 {
    color: var(--white);
}

/* Customers Section */
.customers {
    background: var(--white);
    padding: 5rem 2rem;
}

.customer-callout {
    background: var(--primary-color);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 3rem;
}

.customer-callout h3 {
    color: var(--white);
}

.customer-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.customer-category {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
}

.customer-category h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

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

.customer-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
    font-size: 0.95rem;
}

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

.customer-source {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.1rem;
}

.customer-source a {
    font-weight: 600;
}

/* Take Action Section */
.take-action {
    background: var(--light-bg);
    padding: 5rem 2rem;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.action-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--primary-color);
}

.action-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.action-card ul {
    margin: 1rem 0;
}

.action-card li {
    margin: 0.7rem 0;
    line-height: 1.6;
}

.action-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

.contact-info {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.contact-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.letter-template {
    margin-top: 2rem;
}

.copy-template {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.copy-template:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.template-text {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    font-size: 0.95rem;
    line-height: 1.8;
    max-height: 400px;
    overflow-y: auto;
}

.template-text ul {
    margin: 0.5rem 0 0.5rem 2rem;
}

.template-text ol {
    margin: 0.5rem 0 0.5rem 1.5rem;
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section p {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.footer-section a {
    color: var(--accent);
}

.footer-section a:hover {
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin: 0.5rem 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .nav-links {
        display: none;
    }

    .contradiction-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 50px;
    }

    .timeline-item::before {
        left: 20px;
    }

    .timeline-date {
        text-align: left;
        padding: 0;
        margin-bottom: 0.5rem;
    }

    .story-cards {
        grid-template-columns: 1fr;
    }

    .stat-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 1rem;
    }

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

    .container {
        padding: 0 15px;
    }

    section {
        padding: 3rem 1rem !important;
    }
}
