/* ============================================================================
   PEPDRAW ABOUT PAGE - SPECIFIC STYLES
   Only styles unique to about.html (timeline, story sections, etc.)
   ============================================================================ */

/* ===== STORY SECTION ===== */
.story-section {
    margin-bottom: var(--spacing-4xl);
}

.story-section h2 {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--spacing-2xl);
    color: var(--text-primary);
    padding-bottom: var(--spacing-md);
    border-bottom: 3px solid var(--primary-blue);
}

.story-section p {
    color: var(--text-secondary);
    font-size: var(--font-size-md);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-lg);
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    /* max-width: 900px; */
    margin: var(--spacing-4xl) auto;
}

/* Vertical line */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--gradient-primary);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-4xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-2xl);
}

/* Alternate left/right */
.timeline-item:nth-child(odd) {
    flex-direction: row;
    text-align: right;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    text-align: left;
}

.timeline-item:nth-child(odd) .timeline-content {
    padding-right: var(--spacing-2xl);
    margin-right: calc(50% + 30px);
}

.timeline-item:nth-child(even) .timeline-content {
    padding-left: var(--spacing-2xl);
    margin-left: calc(50% + 30px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-blue);
    border: 4px solid var(--bg-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--primary-blue);
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: var(--bg-secondary);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow);
}

.timeline-content:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.timeline-year {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--text-inverse);
    padding: 0.5rem var(--spacing-md);
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-md);
}

.timeline-title {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.timeline-description {
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    font-size: var(--font-size-md);
    text-align: left;
}
.timeline-features {
    border-top: 2px solid var(--border-light);
    padding-top: var(--spacing-md);
    margin-top: var(--spacing-md);
}
.timeline-features ul{
    text-align: left;
    margin-left: 12%;
    list-style-type: none;
    line-height: var(--line-height-loose);
}

.feature-list li::before {
    content: "✓";
    color: var(--primary-blue);
    font-weight: bold;
    margin-right: 8px;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
    background: var(--gradient-primary-soft);
    border-left: 4px solid var(--primary-blue);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    margin: var(--spacing-3xl) 0;
    font-style: italic;
    font-size: var(--font-size-lg);
    color: var(--text-primary);
    line-height: var(--line-height-relaxed);
}

/* ===== STATS GRID (About Page Version) ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-3xl) 0;
}

.stat-card {
    background: var(--bg-secondary);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-slow);
    border: 1px solid var(--border-light);
}

.stat-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary-blue);
}

.stat-card .stat-number {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.stat-card .stat-label {
    font-size: var(--font-size-md);
    color: var(--text-secondary);
    font-weight: var(--font-weight-medium);
}

/* ===== CTA SECTION ===== */
.cta-section {
    text-align: center;
    padding: var(--spacing-4xl) var(--spacing-lg);
    background: var(--bg-secondary);
    border-radius: var(--radius-2xl);
    margin: var(--spacing-4xl) 0;
}

.cta-section h2 {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.cta-section p {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    /* Stack timeline vertically on mobile */
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        text-align: left !important;
        padding-left: 50px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        padding: var(--spacing-lg);
        margin-left: 40px;
        margin-right: 0;
    }

    .timeline-dot {
        left: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .story-section h2 {
        font-size: var(--font-size-3xl);
    }
}
