/*
Theme Name: AJCAISD Presentation Theme
Author: Gebrehiwot Teklehyamanot
Description: A methodology-first theme for the Aksum University AI Journal launch.
Version: 1.0
*/

:root {
    --wp-blue: #2271b1;
    --dark-navy: #1d2327;
    --bg-light: #f6f7f7;
    --text-main: #2c3338;
}

body { font-family: 'Inter', sans-serif; margin: 0; color: var(--text-main); }
header { background: #fff; border-bottom: 1px solid #dcdcde; padding: 20px 8%; position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; }
.site-title span { color: var(--wp-blue); font-weight: 800; }

.hero { background: var(--dark-navy); color: #fff; padding: 100px 8%; border-bottom: 6px solid var(--wp-blue); text-align: center; }
.container { max-width: 1100px; margin: 60px auto; padding: 0 20px; }

/* Grid for Scope and Roadmap */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.wp-card { background: var(--bg-light); padding: 35px; border-radius: 4px; border-left: 5px solid var(--wp-blue); border: 1px solid #dcdcde; }
.wp-card h3 { color: var(--wp-blue); margin-top: 0; }

/* Workflow List */
.workflow-item { display: flex; gap: 20px; margin-bottom: 25px; align-items: center; }
.step-num { background: var(--wp-blue); color: white; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; flex-shrink: 0; }

footer { background: var(--dark-navy); color: #888; text-align: center; padding: 40px; margin-top: 100px; }