
/* =========================================================
   AHRISA
   ORANGE / RED CLIMATE THEME
========================================================= */

:root {
    --primary: #E85D04;
    --primary-dark: #B93816;
    --secondary: #F48C06;
    --accent: #FFBA49;

    --red: #8E2F1F;
    --deep-red: #641F16;

    --dark: #241A17;
    --text: #625650;

    --light: #FFF8F1;
    --cream: #FFF1E4;

    --white: #FFFFFF;
    --border: #F0DED2;
}


/* =========================================================
   GENERAL
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #ffffff;
    line-height: 1.7;
}

section {
    scroll-margin-top: 85px;
}

h1,
h2,
h3,
h4,
h5 {
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
}


/* =========================================================
   NAVIGATION
========================================================= */

.site-navbar {
    padding: 17px 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(142, 47, 31, 0.08);
    transition: all 0.3s ease;
}

.navbar-scrolled {
    padding: 11px 0;
    box-shadow: 0 5px 25px rgba(80, 30, 15, 0.08);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-main {
    color: var(--primary);
    font-size: 29px;
    font-weight: 800;
    letter-spacing: 1px;
}

.brand-sub {
    margin-top: 5px;
    color: #8A756D;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-link {
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 14px !important;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-button {
    padding: 10px 22px !important;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    border-radius: 5px;
    font-weight: 700;
    padding: 12px 24px;
    transition: all 0.25s ease;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-light {
    color: var(--red);
    background: #ffffff;
    border-color: #ffffff;
}

.btn-light:hover {
    color: var(--dark);
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    min-height: 760px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        linear-gradient(
            115deg,
            rgba(91, 27, 17, 0.97) 0%,
            rgba(142, 47, 31, 0.94) 38%,
            rgba(232, 93, 4, 0.82) 75%,
            rgba(244, 140, 6, 0.72) 100%
        ),
        url('../images/hero.jpg');

    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 82% 28%,
            rgba(255, 186, 73, 0.45),
            transparent 28%
        ),
        radial-gradient(
            circle at 20% 85%,
            rgba(232, 93, 4, 0.35),
            transparent 30%
        );
}

.hero-section::after {
    content: "";
    position: absolute;
    right: -150px;
    bottom: -250px;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    background: rgba(255, 186, 73, 0.12);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.eyebrow {
    display: inline-block;

    color: #ffffff;

    border: 1px solid rgba(255,255,255,0.5);

    padding: 8px 16px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 25px;
}

.hero-section h1 {
    max-width: 900px;

    color: #ffffff;

    font-size: clamp(48px, 7vw, 82px);

    margin-bottom: 25px;

    letter-spacing: -2px;
}

.hero-section h1 span {
    color: #FFBA49;
}

.hero-text {
    max-width: 720px;

    color: rgba(255,255,255,0.92);

    font-size: 20px;

    line-height: 1.7;
}

.hero-buttons {
    margin-top: 35px;

    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}

.hero-buttons .btn-outline-light {
    border-width: 2px;
}

.hero-scroll {
    position: absolute;

    bottom: 25px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 3;
}

.hero-scroll a {
    color: rgba(255,255,255,0.85);

    display: flex;

    align-items: center;

    flex-direction: column;

    gap: 4px;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 2px;
}

.hero-scroll i {
    font-size: 18px;
}


/* =========================================================
   SECTION SYSTEM
========================================================= */

.section {
    padding: 110px 0;
}

.section-light {
    background: var(--light);
}

.section-heading {
    max-width: 780px;
    margin: 0 auto;
}

.section-heading h2 {
    margin-top: 12px;

    font-size: clamp(34px, 5vw, 52px);

    letter-spacing: -1px;
}

.section-heading p {
    font-size: 17px;
    color: var(--text);
}

.section-label {
    color: var(--primary);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}

.light-label {
    color: var(--accent);
}


/* =========================================================
   ABOUT
========================================================= */

#about {
    background:
        linear-gradient(
            180deg,
            #FFF8F1 0%,
            #FFFFFF 100%
        );
}

#about h2 {
    font-size: clamp(36px, 5vw, 54px);

    margin: 15px 0 25px;
}

.lead {
    font-size: 19px;
    color: #493B36;
}

.about-card {
    position: relative;

    padding: 50px;

    background: #ffffff;

    border-radius: 12px;

    border: 1px solid var(--border);

    box-shadow:
        0 20px 60px rgba(120, 45, 20, 0.10);

    overflow: hidden;
}

.about-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 5px;
    height: 100%;

    background:
        linear-gradient(
            180deg,
            var(--primary),
            var(--secondary)
        );
}

.about-icon {
    width: 70px;
    height: 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(232, 93, 4, 0.10);

    color: var(--primary);

    border-radius: 50%;

    font-size: 30px;

    margin-bottom: 25px;
}

.about-card h3 {
    font-size: 30px;

    margin-bottom: 15px;
}

.mini-flow {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;

    color: var(--primary);

    font-size: 13px;

    font-weight: 800;
}

.mini-flow i {
    color: var(--secondary);
}


/* =========================================================
   VISION
========================================================= */

.vision-section {
    background:
        linear-gradient(
            135deg,
            #FFF0E2,
            #FFF8F1
        );
}

.vision-card {
    position: relative;

    height: 100%;

    background: #ffffff;

    padding: 50px;

    border-radius: 10px;

    border: 1px solid var(--border);

    overflow: hidden;
}

.vision-card::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -70px;
    bottom: -70px;

    border-radius: 50%;

    background: rgba(232, 93, 4, 0.08);
}

.card-number {
    position: absolute;

    right: 25px;
    top: 15px;

    font-size: 90px;

    font-weight: 800;

    color: rgba(232, 93, 4, 0.07);
}

.vision-card h2 {
    position: relative;

    font-size: 35px;

    margin: 15px 0 20px;
}

.vision-card p {
    position: relative;

    font-size: 17px;
}


/* =========================================================
   BENEFICIARIES
========================================================= */

.beneficiary-card {
    height: 100%;

    padding: 40px;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 10px;

    transition: 0.3s ease;
}

.beneficiary-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 45px rgba(120, 45, 20, 0.10);

    border-color: rgba(232, 93, 4, 0.25);
}

.beneficiary-icon {
    width: 65px;
    height: 65px;

    border-radius: 10px;

    background: rgba(244, 140, 6, 0.14);

    color: var(--primary);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 28px;

    margin-bottom: 25px;
}

.beneficiary-card h3 {
    font-size: 24px;

    margin-bottom: 15px;
}


/* =========================================================
   DEMONSTRATION SITES
========================================================= */

.sites-section {
    background: #ffffff;
}

.site-card {
    position: relative;

    height: 100%;

    padding: 45px 35px 35px;

    border-radius: 10px;

    background:
        linear-gradient(
            145deg,
            #FFF8F1,
            #FFF0E2
        );

    overflow: hidden;

    border: 1px solid var(--border);

    transition: 0.3s ease;
}

.site-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(120, 45, 20, 0.08);
}

.site-number {
    position: absolute;

    top: -20px;
    right: 10px;

    font-size: 100px;

    font-weight: 800;

    color: rgba(142, 47, 31, 0.07);
}

.site-content {
    position: relative;
}

.province {
    display: inline-block;

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 12px;
}

.site-card h3 {
    font-size: 30px;

    margin-bottom: 15px;
}


/* =========================================================
   WORKSTREAMS
========================================================= */

.workstream-card {
    position: relative;

    height: 100%;

    padding: 40px;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 10px;

    overflow: hidden;

    transition: 0.3s ease;
}

.workstream-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 45px rgba(120, 45, 20, 0.09);
}

.workstream-number {
    position: absolute;

    top: 20px;
    right: 25px;

    color: rgba(232, 93, 4, 0.12);

    font-size: 45px;

    font-weight: 800;
}

.workstream-icon {
    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(232, 93, 4, 0.10);

    color: var(--primary);

    font-size: 28px;

    margin-bottom: 25px;
}

.workstream-card h3 {
    font-size: 24px;

    margin-bottom: 10px;
}

.workstream-card strong {
    color: var(--secondary);

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.workstream-connect {
    height: 100%;

    padding: 40px;

    background:
        linear-gradient(
            135deg,
            var(--red),
            var(--primary)
        );

    color: #ffffff;

    border-radius: 10px;

    position: relative;

    overflow: hidden;
}

.workstream-connect::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -90px;
    bottom: -100px;

    border-radius: 50%;

    background: rgba(255, 186, 73, 0.15);
}

.workstream-connect i {
    font-size: 40px;

    color: var(--accent);
}

.workstream-connect h3 {
    color: #ffffff;

    margin: 25px 0 15px;
}

.workstream-connect p {
    color: rgba(255,255,255,0.86);
}


/* =========================================================
   PATHWAY
========================================================= */

.pathway-section {
    position: relative;

    background:
        linear-gradient(
            135deg,
            #641F16 0%,
            #8E2F1F 40%,
            #C94813 72%,
            #E85D04 100%
        );

    overflow: hidden;
}

.pathway-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    right: -100px;

    border-radius: 50%;

    background: rgba(255, 186, 73, 0.12);
}

.pathway-section h2 {
    color: #ffffff;
}

.pathway-section p {
    color: rgba(255,255,255,0.82);
}

.pathway {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: stretch;

    justify-content: center;

    gap: 10px;
}

.pathway-item {
    flex: 1;

    text-align: center;

    max-width: 190px;
}

.pathway-icon {
    width: 75px;
    height: 75px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: rgba(255,255,255,0.10);

    border: 1px solid rgba(255,255,255,0.25);

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--accent);

    font-size: 28px;
}

.pathway-item h3 {
    color: #ffffff;

    font-size: 20px;
}

.pathway-item p {
    font-size: 13px;
}

.pathway-arrow {
    display: flex;

    align-items: center;

    color: var(--accent);

    font-size: 25px;
}


/* =========================================================
   IMPACT
========================================================= */

.impact-card {
    height: 100%;

    text-align: center;

    padding: 50px 30px;

    background: #ffffff;

    border-radius: 10px;

    border: 1px solid var(--border);

    transition: 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 45px rgba(120, 45, 20, 0.08);
}

.impact-number {
    color: var(--primary);

    font-size: 70px;

    line-height: 1;

    font-weight: 800;

    margin-bottom: 20px;
}

.impact-card h3 {
    font-size: 25px;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding: 110px 0;

    background:
        linear-gradient(
            135deg,
            #F48C06,
            #E85D04 55%,
            #B93816
        );

    position: relative;

    overflow: hidden;
}

.cta-section::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    left: -220px;
    top: -200px;

    border-radius: 50%;

    background: rgba(255,255,255,0.08);
}

.cta-content {
    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: auto;
}

.cta-section h2 {
    color: #ffffff;

    font-size: clamp(38px, 5vw, 58px);

    margin: 15px 0 20px;
}

.cta-section p {
    max-width: 700px;

    margin: 0 auto 30px;

    color: rgba(255,255,255,0.9);

    font-size: 18px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    background:
        linear-gradient(
            180deg,
            #FFFFFF,
            #FFF8F1
        );
}

.contact-section h2 {
    font-size: 50px;

    margin: 15px 0 20px;
}

.contact-card {
    padding: 40px;

    background: #ffffff;

    border-radius: 10px;

    border: 1px solid var(--border);

    box-shadow:
        0 15px 45px rgba(120, 45, 20, 0.06);
}

.contact-item {
    display: flex;

    gap: 20px;

    align-items: center;
}

.contact-item + .contact-item {
    margin-top: 30px;

    padding-top: 30px;

    border-top: 1px solid var(--border);
}

.contact-icon {
    width: 55px;
    height: 55px;

    min-width: 55px;

    border-radius: 50%;

    background: rgba(232, 93, 4, 0.10);

    color: var(--primary);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 22px;
}

.contact-item small {
    display: block;

    color: #927D74;

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.contact-item strong,
.contact-item a {
    display: block;

    color: var(--dark);

    font-size: 16px;

    font-weight: 600;
}

.contact-item a:hover {
    color: var(--primary);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 35px 0;

    background:
        linear-gradient(
            135deg,
            #3D1711,
            #641F16
        );

    color: rgba(255,255,255,0.65);
}

.footer-brand {
    color: #ffffff;

    font-size: 25px;

    font-weight: 800;
}

.site-footer p {
    margin: 3px 0 0;

    font-size: 13px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .site-navbar {
        padding: 12px 0;
    }

    .navbar-collapse {
        padding: 20px 0;
    }

    .nav-button {
        margin-top: 10px;

        display: inline-block;
    }

    .hero-section {
        min-height: 700px;
    }

    .pathway {
        flex-wrap: wrap;
    }

    .pathway-item {
        flex: 0 0 calc(33.333% - 15px);

        max-width: none;
    }

    .pathway-arrow {
        display: none;
    }
}


@media (max-width: 767px) {

    .section {
        padding: 75px 0;
    }

    .hero-section {
        min-height: 650px;
    }

    .hero-section h1 {
        font-size: 46px;

        letter-spacing: -1px;
    }

    .hero-text {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .about-card,
    .vision-card,
    .beneficiary-card,
    .workstream-card {
        padding: 30px;
    }

    .pathway-item {
        flex: 0 0 50%;
    }

    .contact-section h2 {
        font-size: 40px;
    }

    .site-footer {
        text-align: center;
    }

    .site-footer .text-md-end {
        text-align: center !important;

        margin-top: 20px;
    }

}


@media (max-width: 480px) {

    .hero-section h1 {
        font-size: 40px;
    }

    .hero-content {
        padding-top: 70px;
    }

    .pathway-item {
        flex: 0 0 100%;
    }

}


/* =========================================================
   NAVIGATION - PREVENT LINK WRAPPING
========================================================= */

.site-navbar .nav-link {
    white-space: nowrap;
}

.site-navbar .navbar-nav {
    flex-wrap: nowrap;
}

.site-navbar .nav-item {
    white-space: nowrap;
}
