
/* Specific styles for the manifesto page */

/* Manifesto Content Sections */
.manifesto-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}


/* Fix manifesto page hero sizing to prevent parallax overlap */
body .hero .hero-title {
    font-size: clamp(1.5rem, 3.5vw, 3rem) !important;
    margin-bottom: 1.5rem !important;
}

body .hero .hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.2rem) !important;
}

.section {
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

.section-header {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--accent-pink);
    margin-bottom: 2rem;
    text-align: center;
}

.section-text {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.section-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.section-text em {
    color: var(--accent-neon);
    font-style: normal;
    font-weight: 500;
}

/* Quote Block */
.quote-section {
    background: var(--secondary-bg);
    padding: 4rem 2rem;
    margin: 6rem 0;
    position: relative;
    border-left: 4px solid var(--accent-neon);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.4;
    font-style: italic;
}

/* Final Statement */
.final-statement {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(255, 0, 128, 0.1) 100%);
    padding: 6rem 2rem 8rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.final-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 700;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.3;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .manifesto-content {
        padding: 4rem 1rem;
    }

    .section {
        margin-bottom: 4rem;
    }

    .quote-section {
        padding: 3rem 1.5rem;
        margin: 4rem 0;
    }

    .final-statement {
        padding: 4rem 1rem;
    }
}

@media (max-width: 480px) {
    .manifesto-content {
        padding: 3rem 0.5rem;
    }

    .quote-section {
        padding: 2rem 1rem;
    }
}
