﻿/* ============================================================
   about.css - کامپوننت About
   ============================================================ */

.about {
    padding: 4rem 0;
    background-color: var(--background-color, #F4F4F4);
    font-family: var(--font-family, 'Vazirmatn', sans-serif);
}

    .about h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--heading-color, #2E2E2E);
        margin-bottom: 1.5rem;
    }

    .about p {
        font-size: 1.1rem;
        color: var(--text-color, #038DFF);
        line-height: 1.8;
    }

    .about h4 {
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--primary-color, #1A2757);
        margin-top: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .about .about-image {
        border-radius: var(--border-radius-large, 16px);
        box-shadow: var(--shadow-medium, 0 4px 12px rgba(0,0,0,0.1));
        max-width: 100%;
        height: auto;
    }

.about-center {
    text-align: center;
}

.about-split {
    background-color: var(--background-color, #FCFCFC);
}

/* ===== واکنش‌گرایی ===== */
@media (max-width: 768px) {
    .about {
        padding: 2rem 0;
    }

        .about h2 {
            font-size: 2rem;
        }

        .about .about-image {
            margin-top: 1.5rem;
        }
}

@media (max-width: 576px) {
    .about h2 {
        font-size: 1.75rem;
    }

    .about p {
        font-size: 1rem;
    }

    .about h4 {
        font-size: 1.1rem;
    }
}
