:root {
    --navy: #1e2d4a;
    --orange: #c75c2e;
    --cream: #f5f0e8;
    --dark: #1a1a1a;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--dark);
    line-height: 1.6;
    padding-top: 60px;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    z-index: 1000;
    padding: 1rem 2rem;
}

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

.logo {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
}

.logo:hover {
    color: var(--orange);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.burger span {
    display: block;
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

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

@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
    }

    .nav-links[aria-hidden="false"] {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 1.25rem;
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

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

.content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 2rem;
}

.demands {
    background: var(--navy);
    color: white;
    padding: 3rem 2rem;
    margin: 2rem 0;
    border-radius: 12px;
}

.demands h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--orange);
}

.demands ul {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.demands li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.demands li::before {
    content: "✓ ";
    color: var(--orange);
    font-weight: bold;
}

.cta-section {
    background: var(--orange);
    color: white;
    padding: 3rem 2rem;
    margin: 2rem 0;
    border-radius: 12px;
}

.cta-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.petition-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.petition-form input[type="text"],
.petition-form input[type="email"] {
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.petition-form button {
    padding: 1rem 2rem;
    background: var(--navy);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.petition-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hashtag {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-top: 2rem;
}

footer {
    background: var(--navy);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
}

footer a {
    color: var(--orange);
    text-decoration: none;
}

/* Page Sections */
.page-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-section h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 1.5rem;
    text-align: center;
}

.page-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

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

.right-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.right-card h3 {
    color: var(--orange);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    max-width: 400px;
    margin: 2rem auto 0;
}

.contact-info p {
    margin-bottom: 0.75rem;
}

.contact-info a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 600px) {
    .content {
        padding: 2rem 1rem;
    }

    .demands, .cta-section {
        padding: 2rem 1rem;
    }
}

/* Article Page */
.article-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.article-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-align: left;
}

.article-intro {
    font-size: 1.25rem;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: left;
}

.article-body {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 1.2rem;
    line-height: 1.8;
}

.article-body p {
    margin-bottom: 1.5rem;
    text-align: left;
}

.article-body h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
    margin: 2.5rem 0 1.5rem;
    text-align: left;
}

.article-body ul {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.article-body li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    text-align: left;
}

.article-body li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: bold;
}

.article-body blockquote {
    background: var(--navy);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2.5rem 0;
    text-align: center;
}

.article-body blockquote p {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

@media (max-width: 600px) {
    .article-page {
        padding: 2rem 1rem;
    }

    .article-body {
        font-size: 1.1rem;
    }

    .article-body blockquote {
        padding: 1.5rem;
    }

    .article-body blockquote p {
        font-size: 1.25rem;
    }
}

/* Success Page */
.success-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.success-content {
    text-align: center;
    max-width: 500px;
}

.success-content h1 {
    font-size: 3rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1.5rem;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.success-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.success-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--navy);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
}

.success-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
