/* =========================================================
   GLOBAL SETTINGS
========================================================= */


/* World Athletics Regular */

@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;

}


/* World Athletics Headline */

@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;

}


/* =========================================================
   ROOT
========================================================= */

:root {

    --oydc-green: #00843d;

    --oydc-dark-green: #006b32;

    --oydc-black: #111111;

    --oydc-white: #ffffff;

    --border-color: #eeeeee;

    --text-color: #171717;

    --grey-text: #666666;

    --light-green: #f3faf6;

    --soft-green: #f8faf9;

}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family: 'World Athletics', sans-serif;

    color: var(--text-color);

    background: #ffffff;

    overflow-x: hidden;

}


a {

    text-decoration: none;

    color: inherit;

}


/* =========================================================
   CONTAINER
========================================================= */

.governance-container {

    width: 90%;

    max-width: 1200px;

    margin: 0 auto;

}


/* =========================================================
   HERO
========================================================= */

.governance-hero {

    position: relative;

    min-height: 570px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            100deg,
            rgba(0, 0, 0, 0.88),
            rgba(0, 107, 50, 0.75)
        ),
        url('../Images/OYDC-2.jpg')
        center / cover no-repeat;

}


.governance-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.55),
            transparent
        );

}


.governance-hero-content {

    position: relative;

    z-index: 3;

    width: 90%;

    max-width: 1200px;

    margin: 0 auto;

    padding: 80px 0;

    color: #ffffff;

    animation:
        governanceHeroIn
        0.9s
        cubic-bezier(0.22, 1, 0.36, 1)
        0.15s
        both;

}


.governance-label {

    display: inline-block;

    margin-bottom: 14px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2.5px;

}


.governance-hero h1 {

    max-width: 800px;

    margin-bottom: 22px;

    font-family: 'World Athletics Headline', sans-serif;

    font-size: clamp(44px, 6vw, 72px);

    line-height: 1.05;

}


.governance-hero p {

    max-width: 720px;

    margin-bottom: 32px;

    font-size: 18px;

    line-height: 1.7;

    color: rgba(255, 255, 255, 0.92);

}


.governance-hero-buttons {

    display: flex;

}


.governance-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 14px 24px;

    background: var(--oydc-green);

    color: #ffffff;

    border-radius: 4px;

    font-weight: 700;

    transition: 0.3s ease;

}


.governance-btn:hover {

    background: var(--oydc-dark-green);

    transform: translateY(-3px);

}


/* Decorative Circle */

.governance-hero-circle {

    position: absolute;

    right: -190px;

    bottom: -190px;

    width: 520px;

    height: 520px;

    border: 75px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;

    animation:
        governanceCircleIn
        1.2s
        cubic-bezier(0.22, 1, 0.36, 1)
        0.25s
        both;

}


/* =========================================================
   SECTION LABELS
========================================================= */

.section-label {

    display: inline-block;

    margin-bottom: 12px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    color: var(--oydc-green);

}


/* =========================================================
   GOVERNANCE OVERVIEW
========================================================= */

.governance-overview {

    padding: 100px 0;

    background: #ffffff;

}


.governance-overview-grid {

    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    gap: 70px;

    align-items: center;

}


.governance-overview-content h2,
.governance-section-heading h2,
.leadership-content h2,
.documents-header h2,
.accountability-content h2,
.governance-contact h2 {

    margin-bottom: 20px;

    font-family: 'World Athletics Headline', sans-serif;

    font-size: 42px;

    line-height: 1.15;

    color: var(--oydc-black);

}


.governance-overview-content p {

    max-width: 700px;

    margin-bottom: 18px;

    font-size: 16px;

    line-height: 1.8;

    color: var(--grey-text);

}


.governance-overview-card {

    padding: 45px;

    background: var(--light-green);

    border-left: 5px solid var(--oydc-green);

    border-radius: 10px;

}


.governance-overview-icon {

    width: 62px;

    height: 62px;

    margin-bottom: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ffffff;

    color: var(--oydc-green);

    border-radius: 50%;

    font-size: 25px;

}


.governance-overview-card span {

    display: block;

    margin-bottom: 8px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

    color: var(--oydc-green);

}


.governance-overview-card h3 {

    margin-bottom: 12px;

    font-family: 'World Athletics Headline', sans-serif;

    font-size: 26px;

    color: var(--oydc-black);

}


.governance-overview-card p {

    font-size: 15px;

    line-height: 1.7;

    color: var(--grey-text);

}


/* =========================================================
   GOVERNANCE PRINCIPLES
========================================================= */

.governance-principles {

    padding: 100px 0;

    background: var(--soft-green);

}


.governance-section-heading {

    max-width: 720px;

    margin-bottom: 50px;

}


.governance-section-heading p {

    font-size: 16px;

    line-height: 1.7;

    color: var(--grey-text);

}


.governance-principles-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

}


.governance-principle-card {

    padding: 35px 28px;

    background: #ffffff;

    border: 1px solid var(--border-color);

    border-radius: 10px;

    transition: 0.3s ease;

}


.governance-principle-card:hover {

    transform: translateY(-6px);

    border-color: rgba(0, 132, 61, 0.25);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.06);

}


.governance-principle-icon {

    width: 55px;

    height: 55px;

    margin-bottom: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--light-green);

    color: var(--oydc-green);

    border-radius: 50%;

    font-size: 21px;

}


.governance-principle-card h3 {

    margin-bottom: 12px;

    font-family: 'World Athletics Headline', sans-serif;

    font-size: 22px;

    color: var(--oydc-black);

}


.governance-principle-card p {

    font-size: 14px;

    line-height: 1.7;

    color: var(--grey-text);

}


/* =========================================================
   LEADERSHIP
========================================================= */

.leadership-section {

    padding: 100px 0;

    background: #ffffff;

}


.leadership-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}


.leadership-content p {

    max-width: 650px;

    margin-bottom: 18px;

    font-size: 16px;

    line-height: 1.8;

    color: var(--grey-text);

}


.leadership-features {

    display: flex;

    flex-direction: column;

    gap: 18px;

}


.leadership-feature {

    display: flex;

    gap: 20px;

    padding: 25px;

    border: 1px solid var(--border-color);

    border-radius: 10px;

    background: #ffffff;

    transition: 0.3s ease;

}


.leadership-feature:hover {

    transform: translateX(5px);

    border-color: rgba(0, 132, 61, 0.25);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.05);

}


.leadership-feature-icon {

    flex-shrink: 0;

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--light-green);

    color: var(--oydc-green);

    border-radius: 50%;

    font-size: 20px;

}


.leadership-feature h3 {

    margin-bottom: 7px;

    font-family: 'World Athletics Headline', sans-serif;

    font-size: 20px;

}


.leadership-feature p {

    font-size: 14px;

    line-height: 1.6;

    color: var(--grey-text);

}


/* =========================================================
   ACCOUNTABILITY
========================================================= */

.accountability-section {

    padding: 70px 0;

    background: var(--oydc-green);

}


.accountability-box {

    display: flex;

    align-items: center;

    gap: 35px;

}


.accountability-icon {

    flex-shrink: 0;

    width: 80px;

    height: 80px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255, 255, 255, 0.12);

    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 50%;

    font-size: 30px;

}


.accountability-content .section-label {

    color: rgba(255, 255, 255, 0.85);

}


.accountability-content h2 {

    margin-bottom: 15px;

    color: #ffffff;

}


.accountability-content p {

    max-width: 850px;

    font-size: 16px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.9);

}


/* =========================================================
   GOVERNANCE DOCUMENTS
========================================================= */

.governance-documents {

    padding: 100px 0;

    background: #ffffff;

}


.documents-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 50px;

    margin-bottom: 45px;

}


.documents-header > div {

    max-width: 650px;

}


.documents-header p {

    max-width: 430px;

    font-size: 15px;

    line-height: 1.7;

    color: var(--grey-text);

}



/* =========================================================
   GOVERNANCE DOCUMENTS GRID
========================================================= */

.governance-documents-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;

}


/* =========================================================
   DOCUMENT CARD
========================================================= */

.governance-document-card {

    display: flex;

    align-items: flex-start;

    gap: 22px;

    padding: 28px;

    background: #ffffff;

    border: 1px solid var(--border-color);

    border-radius: 12px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;

}


.governance-document-card:hover {

    transform: translateY(-5px);

    border-color: rgba(0, 132, 61, 0.25);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.07);

}


/* =========================================================
   PDF ICON
========================================================= */

.document-icon {

    flex-shrink: 0;

    width: 58px;

    height: 68px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #fff5f5;

    color: #d92323;

    border-radius: 8px;

    font-size: 30px;

    position: relative;

}


/* Small PDF label */

.document-icon::after {

    content: "PDF";

    position: absolute;

    bottom: -6px;

    left: 50%;

    transform: translateX(-50%);

    padding: 2px 6px;

    background: #d92323;

    color: #ffffff;

    border-radius: 3px;

    font-family: 'World Athletics', sans-serif;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.5px;

}


/* =========================================================
   DOCUMENT INFORMATION
========================================================= */

.document-info {

    flex: 1;

}


.document-type {

    display: block;

    margin-bottom: 7px;

    color: var(--oydc-green);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

}


.document-info h3 {

    margin-bottom: 8px;

    font-family: 'World Athletics Headline', sans-serif;

    font-size: 22px;

    line-height: 1.2;

    color: var(--oydc-black);

}


.document-info p {

    margin-bottom: 18px;

    font-size: 14px;

    line-height: 1.6;

    color: var(--grey-text);

}


/* =========================================================
   VIEW PDF BUTTON
========================================================= */

.document-btn {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--oydc-green);

    font-size: 14px;

    font-weight: 700;

    transition: 0.3s ease;

}


.document-btn:hover {

    color: var(--oydc-dark-green);

    gap: 13px;

}


/* =========================================================
   GOVERNANCE STRUCTURE / ORGANOGRAM
========================================================= */

.governance-structure {
    padding: 100px 0;
    background: #ffffff;
}


/* =========================================================
   ORGANOGRAM CONTAINER
========================================================= */

.organogram {
    width: 100%;
    margin-top: 60px;
    position: relative;
}


/* =========================================================
   ORGANOGRAM LEVELS
========================================================= */

.organogram-level {
    display: flex;
    justify-content: center;
    position: relative;
}


/* =========================================================
   ORGANOGRAM CARD
========================================================= */

.organogram-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}


.organogram-card:hover {
    transform: translateY(-5px);
    border-color: #00843d;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
}


/* =========================================================
   BOARD CARD
========================================================= */

.board-card {
    width: 430px;
    min-height: 145px;
    display: flex;
    align-items: center;
    padding: 28px 32px;
    border-top: 5px solid #00843d;
}


/* =========================================================
   MANAGEMENT CARD
========================================================= */

.management-card {
    width: 390px;
    min-height: 135px;
    display: flex;
    align-items: center;
    padding: 25px 30px;
    border-top: 5px solid #111111;
}


/* =========================================================
   ICON
========================================================= */

.organogram-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    background: #f3faf6;
    color: #00843d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-right: 20px;
}


.management-card .organogram-icon {
    background: #111111;
    color: #ffffff;
}


/* =========================================================
   ORGANOGRAM CONTENT
========================================================= */

.organogram-content {
    text-align: left;
}


.organogram-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #00843d;
    margin-bottom: 6px;
}


.organogram-content h3 {
    font-size: 1.35rem;
    line-height: 1.2;
    color: #111111;
    margin-bottom: 8px;
}


.organogram-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}


/* =========================================================
   VERTICAL CONNECTOR
========================================================= */

.vertical-connector {
    width: 2px;
    height: 55px;
    background: #00843d;
    margin: 0 auto;
}


/* =========================================================
   MANAGEMENT → DEPARTMENTS CONNECTOR
========================================================= */

.organogram-branch {
    width: 100%;
    height: 70px;
    position: relative;
}


.branch-vertical {
    position: absolute;
    width: 2px;
    height: 35px;
    background: #00843d;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}


.branch-horizontal {
    position: absolute;
    height: 2px;
    background: #00843d;
    top: 35px;
    left: 12.5%;
    right: 12.5%;
}


/* =========================================================
   DEPARTMENT CARDS
========================================================= */

.organogram-departments {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    position: relative;
}


.department-card {
    min-height: 190px;
    padding: 30px 22px;
    text-align: center;
    border-top: 4px solid #00843d;
}


.department-card::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 25px;
    background: #00843d;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}


.department-card .organogram-icon {
    margin: 0 auto 18px;
    width: 52px;
    height: 52px;
    min-width: 52px;
    font-size: 19px;
}


.department-card .organogram-content {
    text-align: center;
}


.department-card .organogram-content h3 {
    font-size: 1.08rem;
    margin-bottom: 8px;
}


.department-card .organogram-content p {
    font-size: 0.82rem;
    line-height: 1.55;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 900px) {

    .organogram-departments {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 20px;
    }


    .branch-horizontal {
        left: 25%;
        right: 25%;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 600px) {

    .governance-structure {
        padding: 70px 0;
    }


    .organogram {
        margin-top: 45px;
    }


    .board-card,
    .management-card {
        width: 100%;
        min-height: auto;
        padding: 24px 20px;
    }


    .organogram-card {
        box-shadow: 0 7px 20px rgba(0, 0, 0, 0.06);
    }


    .organogram-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 19px;
        margin-right: 15px;
    }


    .organogram-content h3 {
        font-size: 1.15rem;
    }


    .organogram-content p {
        font-size: 0.82rem;
    }


    .organogram-branch {
        height: 45px;
    }


    .branch-vertical {
        height: 25px;
    }


    .branch-horizontal {
        display: none;
    }


    .organogram-departments {
        grid-template-columns: 1fr;
        gap: 18px;
    }


    .department-card {
        min-height: auto;
        padding: 25px 20px;
    }


    .department-card::before {
        height: 18px;
        top: -18px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .governance-documents-grid {

        grid-template-columns: 1fr;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .governance-document-card {

        gap: 17px;

        padding: 22px;

    }


    .document-icon {

        width: 50px;

        height: 60px;

        font-size: 25px;

    }


    .document-info h3 {

        font-size: 19px;

    }


    .document-info p {

        font-size: 13px;

    }

}







/* =========================================================
   CONTACT
========================================================= */

.governance-contact {

    padding: 80px 0;

    background: var(--soft-green);

}


.governance-contact-box {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 45px 50px;

    background: #ffffff;

    border-radius: 12px;

    border: 1px solid var(--border-color);

}


.governance-contact h2 {

    margin-bottom: 12px;

}


.governance-contact p {

    max-width: 650px;

    font-size: 15px;

    line-height: 1.7;

    color: var(--grey-text);

}


.governance-contact-btn {

    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 15px 24px;

    background: var(--oydc-green);

    color: #ffffff;

    border-radius: 4px;

    font-weight: 700;

    transition: 0.3s ease;

}


.governance-contact-btn:hover {

    background: var(--oydc-dark-green);

    transform: translateY(-3px);

}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes governanceHeroIn {

    from {

        opacity: 0;

        transform: translateX(-35px);

    }

    to {

        opacity: 1;

        transform: translateX(0);

    }

}


@keyframes governanceCircleIn {

    from {

        opacity: 0;

        transform:
            translateX(50px)
            scale(0.9);

    }

    to {

        opacity: 1;

        transform:
            translateX(0)
            scale(1);

    }

}


@keyframes governanceFadeUp {

    from {

        opacity: 0;

        transform: translateY(30px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


.governance-overview-content {

    animation:
        governanceFadeUp
        0.8s
        cubic-bezier(0.22, 1, 0.36, 1)
        0.25s
        both;

}


.governance-overview-card {

    animation:
        governanceFadeUp
        0.8s
        cubic-bezier(0.22, 1, 0.36, 1)
        0.4s
        both;

}


.governance-principle-card {

    animation:
        governanceFadeUp
        0.8s
        cubic-bezier(0.22, 1, 0.36, 1)
        both;

}


.governance-principle-card:nth-child(1) {
    animation-delay: 0.25s;
}


.governance-principle-card:nth-child(2) {
    animation-delay: 0.38s;
}


.governance-principle-card:nth-child(3) {
    animation-delay: 0.51s;
}


.governance-principle-card:nth-child(4) {
    animation-delay: 0.64s;
}


.leadership-content,
.leadership-feature,
.accountability-box,
.no-governance-documents,
.governance-contact-box {

    animation:
        governanceFadeUp
        0.8s
        cubic-bezier(0.22, 1, 0.36, 1)
        0.25s
        both;

}


/* =========================================================
   PAGE LOADING LINE
========================================================= */

body::before {

    content: "";

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 3px;

    background: var(--oydc-green);

    transform-origin: left;

    transform: scaleX(0);

    animation:
        governancePageLoading
        1.1s
        cubic-bezier(0.65, 0, 0.35, 1)
        both;

    z-index: 99999;

    pointer-events: none;

}


@keyframes governancePageLoading {

    0% {

        transform: scaleX(0);

        opacity: 1;

    }

    70% {

        transform: scaleX(0.85);

        opacity: 1;

    }

    100% {

        transform: scaleX(1);

        opacity: 0;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .governance-hero {

        min-height: 530px;

    }


    .governance-overview-grid,
    .leadership-grid {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .governance-principles-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .documents-header {

        align-items: flex-start;

        flex-direction: column;

        gap: 15px;

    }


    .documents-header p {

        max-width: 650px;

    }


    .governance-contact-box {

        align-items: flex-start;

        flex-direction: column;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .governance-container {

        width: 90%;

    }


    .governance-hero {

        min-height: 570px;

    }


    .governance-hero-content {

        padding: 60px 0;

    }


    .governance-hero h1 {

        font-size: 40px;

    }


    .governance-hero p {

        font-size: 16px;

    }


    .governance-overview,
    .governance-principles,
    .leadership-section,
    .governance-documents {

        padding: 70px 0;

    }


    .governance-overview-content h2,
    .governance-section-heading h2,
    .leadership-content h2,
    .documents-header h2,
    .accountability-content h2,
    .governance-contact h2 {

        font-size: 32px;

    }


    .governance-principles-grid {

        grid-template-columns: 1fr;

    }


    .governance-overview-card {

        padding: 32px 25px;

    }


    .accountability-box {

        align-items: flex-start;

        flex-direction: column;

        gap: 25px;

    }


    .no-governance-documents {

        padding: 50px 22px;

        border-radius: 14px;

    }


    .no-documents-icon {

        width: 70px;

        height: 70px;

        font-size: 25px;

    }


    .no-governance-documents h3 {

        font-size: 26px;

    }


    .no-governance-documents p {

        font-size: 15px;

    }


    .governance-contact {

        padding: 65px 0;

    }


    .governance-contact-box {

        padding: 35px 25px;

    }


    .governance-contact-btn {

        width: 100%;

        justify-content: center;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    body::before,
    .governance-hero-content,
    .governance-hero-circle,
    .governance-overview-content,
    .governance-overview-card,
    .governance-principle-card,
    .leadership-content,
    .leadership-feature,
    .accountability-box,
    .no-governance-documents,
    .governance-contact-box {

        animation: none !important;

        opacity: 1 !important;

        transform: none !important;

    }

}