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

:root {
    --primary-blue: #1e40af;
    --secondary-blue: #3b82f6;
    --light-blue: #dbeafe;
    --dark-blue: #1e3a8a;
    --accent-red: #dc2626;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
}

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

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

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h2 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.nav-brand p {
    color: var(--accent-red);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.btn-nav {
    background: var(--primary-blue);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    transition: background 0.3s;
}

.btn-nav:hover {
    background: var(--dark-blue);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 6rem 0;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    opacity: 0.95;
}

.hero-signature {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0;
    font-style: italic;
}

.hero-image {
    flex: 0 0 400px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    text-align: center;
}

.btn-primary {
    display: inline-block;
    background: var(--accent-red);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
}

/* Accountability Callout */
.accountability-callout {
    background: var(--bg-light);
    padding: 4rem 0;
    border-left: 6px solid var(--accent-red);
}

.callout-content {
    max-width: 900px;
    margin: 0 auto;
}

.callout-text h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.callout-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.callout-text p:last-of-type {
    font-weight: 600;
    color: var(--accent-red);
}

.btn-callout {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s;
}

.btn-callout:hover {
    background: var(--dark-blue);
    transform: translateX(4px);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--bg-white);
}

.about h2 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-align: center;
}

.about h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-gallery img:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Policies Section */
.policies {
    padding: 5rem 0;
    background: var(--bg-light);
}

.policies h2 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-align: center;
}

.policies h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.policies-content > p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.policy-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.policy-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.policy-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.policy-item h4 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.policy-item p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Environment Section */
.environment {
    padding: 5rem 0;
    background: var(--bg-white);
}

.environment h2 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.environment h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin: 2.5rem 0 1.5rem;
    font-weight: 600;
}

.environment-content {
    max-width: 900px;
    margin: 0 auto;
}

.environment-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.environment-list {
    list-style: none;
    margin: 2rem 0;
    padding-left: 0;
}

.environment-list li {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
}

.environment-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-blue);
    font-weight: bold;
    font-size: 1.3rem;
}

.environment-closing {
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 2rem;
    color: var(--primary-blue);
}

/* Vision Section */
.vision {
    padding: 5rem 0;
    background: var(--light-blue);
}

.vision h2 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.vision-content {
    max-width: 1000px;
    margin: 0 auto;
}

.vision-intro {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 3rem;
    color: var(--text-dark);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.vision-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--secondary-blue);
    transition: all 0.3s;
}

.vision-item:hover {
    border-left-color: var(--accent-red);
    transform: translateX(4px);
}

.vision-item h4 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.vision-item p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1.05rem;
}

.vision-closing {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-top: 3rem;
    color: var(--text-dark);
    font-weight: 600;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* News Section */
.news {
    padding: 5rem 0;
    background: var(--bg-white);
}

.news h2 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    text-align: center;
}

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

.news-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.news-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}

.news-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.news-item h4 {
    padding: 1.5rem;
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.news-article {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: var(--light-blue);
}

.news-article a {
    text-decoration: none;
    color: inherit;
    padding: 2rem;
    text-align: center;
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.article-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.news-article h4 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    padding: 0;
}

.news-article p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.read-more {
    color: var(--secondary-blue);
    font-weight: 600;
    font-size: 1.1rem;
}

.news-article:hover .read-more {
    color: var(--accent-red);
}

/* Donate Section */
.donate {
    padding: 5rem 0;
    background: var(--bg-light);
}

.donate h2 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

.donate-content {
    max-width: 800px;
    margin: 0 auto;
}

.donate-content > p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2rem;
}

.donate-frame {
    width: 100%;
    height: 1600px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.donate-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Call to Action Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: white;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 800;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content p {
    font-size: 1.25rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.cta-strong {
    font-weight: 700;
    font-size: 1.4rem !important;
    margin-top: 2rem !important;
}

.cta-final {
    font-size: 1.5rem !important;
    font-weight: 700;
    margin-top: 2rem !important;
    color: var(--light-blue);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

footer p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Disable all animations and transitions on mobile */
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }

    .nav-link-desktop {
        display: none;
    }

    .nav-links {
        display: flex;
    }

    .hero-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 350px;
    }

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

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

    .hero {
        padding: 4rem 0;
    }

    .callout-text h3 {
        font-size: 1.6rem;
    }

    .callout-text p {
        font-size: 1.1rem;
    }

    .about-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .about-gallery img {
        height: 200px;
    }

    .about h2,
    .policies h2,
    .environment h2,
    .vision h2,
    .news h2 {
        font-size: 2.2rem;
    }

    .about h3,
    .policies h3 {
        font-size: 1.5rem;
    }

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

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

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

    .donate h2 {
        font-size: 2.2rem;
    }

    .donate-frame {
        height: 1400px;
    }

    .cta h2 {
        font-size: 2.2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

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

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .nav-brand h2 {
        font-size: 1.4rem;
    }

    .container {
        padding: 0 15px;
    }

    .about-gallery {
        grid-template-columns: 1fr;
    }

    .about-gallery img {
        height: 250px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Colors */
::selection {
    background: var(--secondary-blue);
    color: white;
}
