/* ===================================================================
 * MANIFESTO SECTION - CINEMATIC VISUAL
 * Dark aesthetic with gradient-masked photo + performance narrative
 * ===================================================================
 */

.manifesto-section {
    position: relative;
    padding: 0;
    background: #000000;
    overflow: hidden;
}

/* ===================================================================
 * MANIFESTO CONTAINER - CINEMATIC SPLIT LAYOUT
 * ===================================================================
 */

.manifesto-container {
    display: grid;
    grid-template-columns: 45% 55%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 600px;
    align-items: center;
}

/* ===================================================================
 * LEFT SIDE - CINEMATIC PHOTO WITH GRADIENT MASK
 * ===================================================================
 */

.manifesto-photo {
    position: relative;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
}

.photo-cinematic {
    position: relative;
    width: 100%;
    height: 100%;
}

.photo-cinematic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    /* Desaturated artistic filter */
    filter: grayscale(30%) contrast(1.1) brightness(0.9);
}

/* Gradient Mask - Fades image to black on the right */
.gradient-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.4) 70%,
        #000000 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* ===================================================================
 * RIGHT SIDE - MANIFESTO CONTENT
 * ===================================================================
 */

.manifesto-content {
    position: relative;
    z-index: 2;
    padding: 80px 60px 80px 40px;
    /* Slight overlap with image */
    margin-left: -40px;
}

/* Manifesto Badge */
.manifesto-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(122, 76, 255, 0.1);
    border: 1px solid rgba(122, 76, 255, 0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #7A4CFF;
    margin-bottom: 24px;
}

.manifesto-badge i {
    font-size: 14px;
}

/* Manifesto Title */
.manifesto-title {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 32px;
}

/* Manifesto Text */
.manifesto-text {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    letter-spacing: 0.02em;
}

/* Manifesto Quote - Highlight with Purple Neon Line */
.manifesto-quote {
    position: relative;
    padding: 24px 0 24px 32px;
    margin: 0 0 40px 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 20px;
    font-style: italic;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(122, 76, 255, 0.03);
    border-radius: 8px;
}

/* Purple neon vertical line */
.manifesto-quote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #7A4CFF, #A78BFA);
    box-shadow: 0 0 20px rgba(122, 76, 255, 0.6);
    border-radius: 4px;
}

/* Manifesto CTA */
.manifesto-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, #7A4CFF, transparent);
    box-shadow: 0 0 10px rgba(122, 76, 255, 0.5);
}

.manifesto-cta p {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ===================================================================
 * RESPONSIVE DESIGN
 * ===================================================================
 */

/* Tablet */
@media (max-width: 1024px) {
    .manifesto-container {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .manifesto-photo {
        min-height: 400px;
        max-height: 400px;
    }

    .gradient-mask {
        background: linear-gradient(
            to bottom,
            transparent 0%,
            transparent 40%,
            rgba(0, 0, 0, 0.5) 70%,
            #000000 100%
        );
    }

    .manifesto-content {
        margin-left: 0;
        padding: 60px 40px;
    }

    .manifesto-title {
        font-size: 44px;
    }

    .manifesto-text {
        font-size: 17px;
    }

    .manifesto-quote {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .manifesto-photo {
        min-height: 350px;
        max-height: 350px;
    }

    .manifesto-content {
        padding: 50px 30px;
    }

    .manifesto-title {
        font-size: 36px;
        margin-bottom: 24px;
    }

    .manifesto-text {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .manifesto-quote {
        padding: 20px 0 20px 24px;
        font-size: 17px;
        margin-bottom: 32px;
    }

    .manifesto-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cta-line {
        width: 80px;
    }
}

@media (max-width: 480px) {
    .manifesto-photo {
        min-height: 300px;
        max-height: 300px;
    }

    .photo-cinematic img {
        filter: grayscale(40%) contrast(1.15) brightness(0.85);
    }

    .manifesto-content {
        padding: 40px 24px;
    }

    .manifesto-title {
        font-size: 28px;
    }

    .manifesto-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .manifesto-quote {
        padding: 18px 0 18px 20px;
        font-size: 16px;
    }

    .manifesto-cta p {
        font-size: 15px;
    }
}

/* ===================================================================
 * ALTERNATIVE: FULL-WIDTH CINEMATIC VERSION (Commented)
 * Uncomment if you want full-bleed photo
 * ===================================================================
 */

/*
@media (min-width: 1400px) {
    .manifesto-container {
        max-width: 100%;
        grid-template-columns: 50% 50%;
    }

    .manifesto-photo {
        min-height: 700px;
    }

    .manifesto-content {
        padding: 100px 80px 100px 80px;
        margin-left: -60px;
    }

    .manifesto-title {
        font-size: 64px;
    }

    .manifesto-text {
        font-size: 20px;
    }

    .manifesto-quote {
        font-size: 22px;
    }
}
*/
