/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000;
    --red-color: #CC2936;
    --text-color: #666;
    --max-width: 900px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    font-weight: 400;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 35px;
    width: auto;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.instagram-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    padding: 140px 40px 40px;
}

.hero-content {
    max-width: 800px;
}

.hero-logo {
    width: 400px;
    height: auto;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -2px;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.1;
}

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

.hero-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--red-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

/* Homepage specific - more space before footer */
.hero {
    margin-bottom: 120px;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--red-color);
}

/* Content Sections */
section {
    padding: 60px 0;
}

.manifesto-section {
    background: #fff;
}

.about-section {
    background: #fafafa;
}

.support-section {
    background: #fff;
}

section h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.manifesto-content,
.about-content,
.support-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.manifesto-content p,
.about-content p,
.support-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text-color);
}

.manifesto-content h3,
.about-content h3,
.support-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 40px 0 20px;
}

/* Manifesto bullet points styling */
.manifesto-principles {
    margin: 30px 0;
    padding-left: 0;
    list-style: none;
}

.manifesto-principles li {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-color);
    padding-left: 20px;
    position: relative;
}

.manifesto-principles li:before {
    content: "•";
    color: var(--primary-color);
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 0;
}

.manifesto-paragraph {
    margin-top: 30px;
    margin-bottom: 30px;
}

/* Manifesto initiated by links */
.manifesto-content ul li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.manifesto-content ul li a:hover {
    color: var(--red-color);
}

.support-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.support-content li {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: var(--text-color);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    padding: 30px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo p {
    font-weight: 400;
    font-size: 12px;
    color: #ccc;
}

.footer-social .social-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-social .social-link:hover {
    color: var(--red-color);
}


/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 5px 15px;
        flex-direction: column;
        gap: 5px;
    }

    .nav-links {
        gap: 8px;
        flex-wrap: nowrap;
        justify-content: center;
        font-size: 12px;
    }

    .nav-links a {
        padding: 5px 6px;
        white-space: nowrap;
    }

    .hero {
        padding: 100px 15px 40px;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-logo {
        width: 180px;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 12px;
        margin-bottom: 25px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    /* Content pages mobile fixes */
    .manifesto-page,
    .about-page,
    .support-page {
        padding: 120px 0 80px;
    }

    .manifesto-page h1,
    .about-page h1,
    .support-page h1 {
        font-size: 28px;
        margin-bottom: 30px;
        padding: 0 15px;
        margin-top: 20px;
    }

    .manifesto-content,
    .about-content,
    .support-content {
        padding: 0 15px;
    }

    .manifesto-content h3,
    .about-content h3 {
        font-size: 20px;
        margin: 30px 0 15px;
    }

    .manifesto-content p,
    .about-content p,
    .support-content p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .manifesto-principles li {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 15px;
        padding-left: 15px;
    }

    .about-description {
        font-size: 16px;
        margin: 30px 0 40px;
    }

    .initiator {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .initiator h4 a {
        font-size: 16px;
    }

    .initiator p {
        font-size: 14px;
    }

    .manifesto-actions,
    .about-actions,
    .support-actions {
        margin-top: 40px;
        padding: 0 15px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .manifesto-actions .cta-button,
    .about-actions .cta-button,
    .support-actions .cta-button {
        margin: 0;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    footer {
        padding: 20px 0 15px;
    }
}

/* Smooth animations */
a {
    transition: color 0.3s ease;
}

/* Content Pages */
.manifesto-page,
.about-page,
.support-page {
    padding: 140px 0 100px;
    background: #fff;
}

.manifesto-page h1,
.about-page h1,
.support-page h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1.1;
}

.manifesto-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--red-color);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 60px;
}

.manifesto-actions,
.about-actions,
.support-actions {
    text-align: center;
    margin-top: 60px;
}

.manifesto-actions .cta-button,
.about-actions .cta-button,
.support-actions .cta-button {
    margin: 0 10px;
}

.support-list {
    margin: 20px 0;
    padding-left: 20px;
}

.support-list li {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: var(--text-color);
}

/* Who We Are page styling */
.about-description {
    font-size: 18px;
    font-style: normal;
    color: var(--text-color);
    margin: 40px 0 50px;
    line-height: 1.7;
}

.initiators {
    margin-top: 30px;
}

.initiator {
    margin-bottom: 20px;
    padding-bottom: 15px;
}

.initiator:not(:last-child) {
    border-bottom: 1px solid #eee;
}

.initiator h4 {
    margin-bottom: 5px;
}

.initiator h4 a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.initiator h4 a:hover {
    color: var(--red-color);
}

.initiator p {
    color: var(--text-light);
    font-size: 18px;
    margin: 0;
}

.initiator p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.initiator p a:hover {
    color: var(--red-color);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: white;
}

.nav-links .active {
    color: var(--red-color) !important;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--red-color);
    outline-offset: 2px;
}