/* ── Google Fonts ────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Component stylesheets ───────────────────────────────────────────────── */
@import url('./components/header.css');
@import url('./components/hero.css');
@import url('./components/about.css');
@import url('./components/highlights.css');
@import url('./components/stats.css');
@import url('./components/programs.css');
@import url('./components/footer.css');

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ── Design Tokens ───────────────────────────────────────────────────────── */
:root {
    /* Brand colors */
    --color-accent:       #E8173C;
    --color-accent-dark:  #C4102E;
    --color-accent-pale:  rgba(232, 23, 60, 0.1);
    --color-navy:         #1A2340;
    --color-topbar:       #C4102E;
    --color-topbar-text:  #ffffff;

    /* Surface & backgrounds */
    --color-bg:           #F5F7FA;
    --color-surface:      #ffffff;
    --color-border:       #E8EAF0;

    /* Text */
    --color-text:         #1A2340;
    --color-text-muted:   #6B7280;

    /* Typography */
    --font-display:       'Inter', sans-serif;
    --font-body:          'Inter', sans-serif;

    /* Spacing scale */
    --space-sm:   8px;
    --space-md:   16px;
    --space-lg:   24px;
    --space-xl:   48px;

    /* Animation */
    --transition: 220ms ease-in-out;

    /* Layout */
    --max-width:  1200px;
}

/* ── Base ────────────────────────────────────────────────────────────────── */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

button {
    font-family: inherit;
}

/* ── Utilities ───────────────────────────────────────────────────────────── */
.accent {
    color: var(--color-accent);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}
