/**
 * About Page Styles - The Arabic Poetry
 * Mission-focused, clean design with navy cards on black background
 */

/* ============================================
   COLOR VARIABLES
   ============================================ */
:root {
    --about-black: #000000;
    --about-navy: #0a1e43;
    --about-terracotta: #95472d;
    --about-white: #FFFFFF;
    --about-grey: #A0A0A0;
    --about-dark-grey: #707070;
}

/* ============================================
   BASE STYLES
   ============================================ */
body {
    background: var(--about-black);
    color: var(--about-white);
    font-family: 'Crimson Pro', Georgia, serif;
    margin: 0;
    padding: 0;
    line-height: 1.8;
}

/* ============================================
   HERO SECTION
   ============================================ */
.about-hero {
    background: var(--about-black);
    padding: 80px 40px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 2.875rem; /* 2.5rem + 15% */
    font-weight: 700;
    color: var(--about-white);
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 1.38rem; /* 1.2rem + 15% */
    font-weight: 400;
    color: var(--about-grey);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   MAIN CONTAINER
   ============================================ */
.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px 100px;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.about-section {
    margin-bottom: 60px;
}

.about-section:last-child {
    margin-bottom: 0;
}

.section-card {
    background: var(--about-navy);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.section-card.card-centered {
    text-align: center;
}

.section-title {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 1.725rem; /* 1.5rem + 15% */
    font-weight: 700;
    color: var(--about-white);
    margin: 0 0 24px 0;
    line-height: 1.3;
}

.section-text {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 1.265rem; /* 1.1rem + 15% */
    font-weight: 400;
    color: var(--about-white);
    margin: 0 0 20px 0;
    line-height: 1.8;
}

.section-text:last-child {
    margin-bottom: 0;
}

.section-text strong {
    font-weight: 700;
    color: var(--about-white);
}

/* Arabic Name Display */
.arabic-name {
    font-family: 'UKIJ Merdane', 'HSN Naskh', serif;
    font-size: 2.3rem; /* Larger for Arabic display */
    font-weight: 700;
    color: var(--about-terracotta);
    direction: rtl;
    margin: 30px 0;
}

/* ============================================
   HOW IT WORKS GRID
   ============================================ */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.step-card {
    text-align: center;
    padding: 20px;
}

.step-number {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 3.45rem; /* 3rem + 15% */
    font-weight: 700;
    color: var(--about-terracotta);
    margin-bottom: 15px;
    line-height: 1;
}

.step-title {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 1.38rem; /* 1.2rem + 15% */
    font-weight: 700;
    color: var(--about-white);
    margin: 0 0 12px 0;
}

.step-text {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 1.035rem; /* 0.9rem + 15% */
    font-weight: 400;
    color: var(--about-grey);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   INVOLVEMENT LIST
   ============================================ */
.involvement-list {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 1.265rem; /* 1.1rem + 15% */
    color: var(--about-white);
    line-height: 1.9;
    padding-left: 20px;
    margin: 24px 0;
}

.involvement-list li {
    margin-bottom: 16px;
    padding-left: 8px;
}

.involvement-list li:last-child {
    margin-bottom: 0;
}

.involvement-list strong {
    font-weight: 700;
    color: var(--about-terracotta);
}

/* ============================================
   CTA BUTTONS
   ============================================ */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    margin-top: 30px;
    flex-wrap: wrap;
}

.card-centered .cta-buttons {
    justify-content: center;
}

.cta-btn {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 1.15rem; /* 1rem + 15% */
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.cta-primary {
    background: var(--about-terracotta);
    color: var(--about-white);
}

.cta-primary:hover {
    background: #7a3a24;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(149, 71, 45, 0.4);
}

.cta-secondary {
    background: transparent;
    color: var(--about-terracotta);
    border: 2px solid var(--about-terracotta);
}

.cta-secondary:hover {
    background: var(--about-terracotta);
    color: var(--about-white);
    transform: translateY(-2px);
}

/* ============================================
   CONTACT LINK
   ============================================ */
.contact-link {
    color: var(--about-terracotta);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.contact-link:hover {
    border-bottom-color: var(--about-terracotta);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .about-container {
        max-width: 700px;
        padding: 50px 30px 80px;
    }

    .hero-title {
        font-size: 2.3rem; /* Slightly smaller on tablet */
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    /* Hero adjustments */
    .about-hero {
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    /* Container adjustments */
    .about-container {
        padding: 40px 20px 60px;
    }

    .about-section {
        margin-bottom: 40px;
    }

    /* Card adjustments */
    .section-card {
        padding: 30px 24px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-text {
        font-size: 1.15rem;
    }

    /* How it works grid - stack on mobile */
    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-number {
        font-size: 2.5rem;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .step-text {
        font-size: 1rem;
    }

    /* CTA buttons - full width on mobile */
    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }

    /* Involvement list */
    .involvement-list {
        font-size: 1.1rem;
        padding-left: 16px;
    }
}

/* Mobile (< 480px) */
@media (max-width: 480px) {
    .about-hero {
        padding: 40px 16px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .about-container {
        padding: 30px 16px 50px;
    }

    .section-card {
        padding: 24px 20px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-text {
        font-size: 1.05rem;
    }

    .arabic-name {
        font-size: 1.8rem;
    }

    .cta-btn {
        font-size: 1.05rem;
        padding: 12px 24px;
    }
}
