
/* =========================================================
   OYDC ZAMBIA
   STRATEGIC PLAN 2023–2028
========================================================= */


/* =========================================================
   FONTS
========================================================= */

@font-face {
    font-family: 'World Athletics';

    src: url('../Font/WorldAthletics.eot');

    src:
        local('World Athletics'),
        local('WorldAthletics'),
        url('../Font/WorldAthletics.eot?#iefix')
        format('embedded-opentype'),
        url('../Font/WorldAthletics.woff2')
        format('woff2'),
        url('../Font/WorldAthletics.woff')
        format('woff'),
        url('../Font/WorldAthletics.ttf')
        format('truetype');

    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'World Athletics Headline';

    src: url('../Font/WorldAthleticsHeadline.eot');

    src:
        local('World Athletics Headline'),
        local('WorldAthleticsHeadline'),
        url('../Font/WorldAthleticsHeadline.eot?#iefix')
        format('embedded-opentype'),
        url('../Font/WorldAthleticsHeadline.ttf')
        format('truetype');

    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {

    --oydc-green: #00843d;

    --oydc-dark-green: #006b32;

    --oydc-light-green: #eaf6ef;

    --oydc-black: #111111;

    --oydc-dark: #171717;

    --oydc-white: #ffffff;

    --oydc-grey: #f5f6f5;

    --oydc-border: #e4e7e5;

    --oydc-text: #414141;

}


body {

    font-family: 'World Athletics', Arial, sans-serif;

    color: var(--oydc-text);

    background: var(--oydc-white);

    line-height: 1.6;

}


/* =========================================================
   CONTAINER
========================================================= */

.section-container {

    width: min(1200px, 90%);

    margin: auto;

}


/* =========================================================
   HERO
========================================================= */

.strategic-hero {

    position: relative;

    min-height: 470px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            100deg,
            rgba(0,0,0,.88),
            rgba(0,80,40,.72)
        ),
        url('../Images/OYDC-10.jpg');

    background-size: cover;

    background-position: center;

    overflow: hidden;

}


.strategic-hero::after {

    content: "";

    position: absolute;

    right: -100px;

    bottom: -150px;

    width: 450px;

    height: 450px;

    border: 70px solid rgba(255,255,255,.06);

    border-radius: 50%;

}


.strategic-hero-content {

    position: relative;

    z-index: 2;

    width: min(1200px, 90%);

    margin: auto;

    color: white;

}


.strategic-label {

    display: inline-block;

    padding: 7px 15px;

    border-left: 4px solid var(--oydc-green);

    background: rgba(255,255,255,.08);

    font-size: 13px;

    letter-spacing: 2px;

    margin-bottom: 18px;

}


.strategic-hero h1 {

    font-family: 'World Athletics Headline', Arial, sans-serif;

    font-size: clamp(48px, 6vw, 82px);

    line-height: .98;

    max-width: 800px;

}


.strategic-hero h1 span {

    display: block;

    color: #45b96f;

}


.strategic-hero p {

    max-width: 700px;

    margin-top: 25px;

    font-size: 18px;

    color: rgba(255,255,255,.86);

}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {

    max-width: 850px;

}


.section-heading.centered {

    margin-left: auto;

    margin-right: auto;

    text-align: center;

}


.section-kicker {

    display: block;

    color: var(--oydc-green);

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 2px;

    margin-bottom: 12px;

}


.section-heading h2 {

    font-family: 'World Athletics Headline', Arial, sans-serif;

    font-size: clamp(32px, 4vw, 52px);

    line-height: 1.1;

    color: var(--oydc-black);

}


.section-heading h2 strong {

    color: var(--oydc-green);

}


.section-heading p {

    margin-top: 18px;

    color: #666;

}


/* =========================================================
   INTRODUCTION
========================================================= */

.strategy-intro {

    padding: 100px 0;

}


.intro-content {

    max-width: 850px;

    margin-top: 35px;

}


.intro-content p {

    font-size: 17px;

    margin-bottom: 18px;

    color: #505050;

}


/* =========================================================
   STRATEGIC OBJECTIVE
========================================================= */

.strategic-objective {

    padding: 0 0 100px;

}


.objective-box {

    display: flex;

    align-items: center;

    gap: 35px;

    padding: 45px;

    background: var(--oydc-light-green);

    border-left: 6px solid var(--oydc-green);

}


.objective-icon {

    min-width: 80px;

    height: 80px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--oydc-green);

    color: white;

    font-size: 30px;

    border-radius: 50%;

}


.objective-box h2 {

    font-family: 'World Athletics Headline', Arial, sans-serif;

    color: var(--oydc-black);

    font-size: 34px;

}


.objective-box p {

    max-width: 850px;

    margin-top: 8px;

}


/* =========================================================
   KPA SECTION
========================================================= */

.kpa-section {

    padding: 100px 0;

    background: #f7f8f7;

}


.kpa-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

    margin-top: 55px;

}


.kpa-card {

    position: relative;

    background: white;

    padding: 38px 32px;

    min-height: 310px;

    border: 1px solid var(--oydc-border);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;

}


.kpa-card:hover {

    transform: translateY(-7px);

    border-color: var(--oydc-green);

    box-shadow:
        0 18px 45px rgba(0,0,0,.08);

}


.kpa-number {

    position: absolute;

    right: 22px;

    top: 17px;

    font-size: 42px;

    font-weight: bold;

    color: #edf1ee;

}


.kpa-icon {

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--oydc-light-green);

    color: var(--oydc-green);

    font-size: 23px;

    border-radius: 50%;

    margin-bottom: 25px;

}


.kpa-card h3 {

    font-family: 'World Athletics Headline', Arial, sans-serif;

    font-size: 25px;

    color: var(--oydc-black);

    margin-bottom: 12px;

}


.kpa-card p {

    color: #666;

    font-size: 15px;

}


/* =========================================================
   FACILITY MAINTENANCE
========================================================= */

.facility-section {

    padding: 110px 0;

    background:
        linear-gradient(
            110deg,
            #101713,
            #063a20
        );

    color: white;

}


.facility-grid {

    display: grid;

    grid-template-columns:
        1.4fr .8fr;

    gap: 80px;

    align-items: center;

}


.facility-content .section-kicker {

    color: #51c77d;

}


.facility-content h2 {

    font-family: 'World Athletics Headline', Arial, sans-serif;

    font-size: clamp(36px, 4vw, 58px);

    line-height: 1.05;

    color: white;

}


.facility-content h2 span {

    display: block;

    color: #51c77d;

}


.facility-content > p {

    max-width: 750px;

    margin-top: 22px;

    color: rgba(255,255,255,.76);

    font-size: 16px;

}


.facility-points {

    margin-top: 30px;

}


.facility-points div {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 13px;

}


.facility-points i {

    color: #51c77d;

}


.facility-highlight {

    padding: 45px;

    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.14);

}


.facility-icon {

    font-size: 45px;

    color: #51c77d;

    margin-bottom: 25px;

}


.facility-highlight > span {

    font-size: 11px;

    letter-spacing: 2px;

    color: #51c77d;

}


.facility-highlight h3 {

    font-family: 'World Athletics Headline', Arial, sans-serif;

    font-size: 34px;

    line-height: 1.1;

    color: white;

    margin: 12px 0;

}


.facility-highlight p {

    color: rgba(255,255,255,.7);

}


/* =========================================================
   FRAMEWORK
========================================================= */

.framework-section {

    padding: 100px 0;

}


.framework {

    margin-top: 60px;

    display: flex;

    align-items: stretch;

    gap: 15px;

}


.framework-item {

    flex: 1;

    padding: 30px 25px;

    background: #f6f7f6;

    border-top: 4px solid var(--oydc-green);

}


.framework-item > span {

    display: block;

    color: var(--oydc-green);

    font-weight: bold;

    margin-bottom: 10px;

}


.framework-item h3 {

    font-family: 'World Athletics Headline', Arial, sans-serif;

    color: var(--oydc-black);

    font-size: 22px;

    line-height: 1.15;

}


.framework-item p {

    margin-top: 10px;

    font-size: 14px;

    color: #666;

}


.framework-arrow {

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--oydc-green);

}


/* =========================================================
   TIMELINE
========================================================= */

.timeline-section {

    padding: 100px 0;

    background: #f7f8f7;

}


.timeline {

    position: relative;

    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 20px;

    margin-top: 65px;

}


.timeline-line {

    position: absolute;

    top: 45px;

    left: 5%;

    right: 5%;

    height: 3px;

    background: var(--oydc-green);

}


.timeline-item {

    position: relative;

    text-align: center;

}


.timeline-year {

    position: relative;

    z-index: 2;

    width: 90px;

    height: 90px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: white;

    border: 4px solid var(--oydc-green);

    color: var(--oydc-green);

    font-weight: bold;

}


.timeline-dot {

    display: none;

}


.timeline-item p {

    margin-top: 22px;

    padding: 0 10px;

    font-size: 13px;

    color: #666;

}


/* =========================================================
   DOWNLOAD
========================================================= */

.strategy-download {

    padding: 80px 0;

}


.download-box {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

    padding: 50px;

    background: var(--oydc-green);

    color: white;

}


.download-box .section-kicker {

    color: rgba(255,255,255,.75);

}


.download-box h2 {

    font-family: 'World Athletics Headline', Arial, sans-serif;

    font-size: 38px;

}


.download-box p {

    margin-top: 8px;

    color: rgba(255,255,255,.8);

}


.download-button {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 15px 24px;

    background: white;

    color: var(--oydc-green);

    text-decoration: none;

    font-weight: bold;

    white-space: nowrap;

    transition: .25s ease;

}


.download-button:hover {

    background: var(--oydc-black);

    color: white;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .kpa-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .facility-grid {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .framework {

        flex-wrap: wrap;

    }


    .framework-item {

        min-width: 45%;

    }


    .framework-arrow {

        display: none;

    }


    .timeline {

        grid-template-columns:
            repeat(3, 1fr);

        row-gap: 45px;

    }


    .timeline-line {

        display: none;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .strategic-hero {

        min-height: 520px;

    }


    .strategic-hero h1 {

        font-size: 48px;

    }


    .strategic-hero p {

        font-size: 16px;

    }


    .strategy-intro,
    .kpa-section,
    .facility-section,
    .framework-section,
    .timeline-section {

        padding: 70px 0;

    }


    .objective-box {

        flex-direction: column;

        align-items: flex-start;

        padding: 30px;

    }


    .kpa-grid {

        grid-template-columns: 1fr;

    }


    .framework {

        flex-direction: column;

    }


    .framework-item {

        min-width: 100%;

    }


    .timeline {

        grid-template-columns: 1fr;

    }


    .timeline-item {

        display: grid;

        grid-template-columns: 90px 1fr;

        gap: 20px;

        text-align: left;

        align-items: center;

    }


    .timeline-item p {

        margin-top: 0;

    }


    .download-box {

        flex-direction: column;

        align-items: flex-start;

        padding: 35px 25px;

    }


    .download-button {

        width: 100%;

        justify-content: center;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .strategic-hero h1 {

        font-size: 40px;

    }


    .section-heading h2 {

        font-size: 34px;

    }


    .objective-box h2 {

        font-size: 28px;

    }


    .facility-content h2 {

        font-size: 38px;

    }

}

