/* ==========================================
   WEINSE WEBSITE
   Women Empowerment and Integration Network
   Empower. Integrate. Inspire.
========================================== */


/* ---------- GLOBAL ---------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #2c2c2c;
    background: #ffffff;
    line-height: 1.7;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* ==========================================
   COLORS
========================================== */

:root {

    /* =====================================
       WEINSE LOGO COLOR PALETTE
    ===================================== */

    --purple-dark: #4b1767;
    --purple: #702283;
    --violet: #8e44ad;

    --pink: #d62976;
    --magenta: #c2187a;

    --red: #d83a3a;

    --orange: #ef7d22;
    --orange-light: #f39c32;

    --gold: #e5a823;
    --yellow: #f2c230;

    --green: #65a844;
    --green-dark: #478832;

    --blue: #3977b7;
    --blue-dark: #285a91;

    --dark: #25202a;
    --grey: #69636c;

    --light-purple: #f4eef7;
    --light-pink: #fdf0f6;
    --light-orange: #fff4e8;
    --light-green: #f1f7ed;
    --light-blue: #eef5fb;

    --light-grey: #f7f5f8;
    --white: #ffffff;
}


/* ==========================================
   HEADER
========================================== */

.site-header {
    width: 100%;
    background: #ffffff;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.site-header::after {
    content: "";

    display: block;

    width: 100%;
    height: 5px;

    background: linear-gradient(
        90deg,
        var(--purple) 0%,
        var(--pink) 18%,
        var(--red) 35%,
        var(--orange) 50%,
        var(--yellow) 65%,
        var(--green) 82%,
        var(--blue) 100%
    );
}
.nav-container {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
}

.site-logo {
    width: 145px;
    height: auto;
}


/* ==========================================
   NAVIGATION
========================================== */

.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav a {
    display: block;
    color: var(--dark);
    padding: 12px 11px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.main-nav > ul > li > a:hover {
    color: var(--pink);
}


/* Membership button */

.main-nav .membership-btn {
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--purple),
        var(--pink)
    );

    padding: 11px 18px;
    border-radius: 25px;
    margin-left: 5px;
}

.main-nav .membership-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
}
.language-switch {
    color: var(--purple);
    font-weight: 700;
}

.language-switch:hover {
    color: var(--pink);
}

/* ==========================================
   DROPDOWN MENU
========================================== */

.dropdown-menu {
    position: absolute;

    top: 100%;
    left: 0;

    min-width: 240px;

    background: #ffffff;

    box-shadow: 0 10px 30px
        rgba(0, 0, 0, 0.15);

    border-radius: 8px;

    padding: 8px 0;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: 0.3s;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.dropdown-menu li a {
    padding: 12px 18px;
    color: var(--dark);
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background: var(--light-grey);
    color: var(--pink);
}


/* ==========================================
   MOBILE MENU BUTTON
========================================== */

.menu-toggle {
    display: none;

    background: none;
    border: none;

    font-size: 30px;

    color: var(--purple);

    cursor: pointer;
}


/* ==========================================
   HERO SECTION
========================================== */

.hero {
    position: relative;

    min-height: 680px;

    display: flex;
    align-items: center;

    overflow: hidden;

background-image:
    linear-gradient(
        90deg,
        rgba(45, 10, 70, 0.88) 0%,
        rgba(75, 23, 103, 0.72) 35%,
        rgba(75, 23, 103, 0.20) 65%,
        rgba(0, 0, 0, 0.05) 100%
    ),
    url("../images/weinse-hero.png");

background-size: cover;

background-position: center;

background-repeat: no-repeat;
}


/* Decorative background */

.hero::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.07);

    right: -180px;
    top: -180px;
}

.hero::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: rgba(228, 166, 41, 0.12);

    left: -100px;
    bottom: -130px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-content {
    position: relative;

    z-index: 2;

    color: #ffffff;

    max-width: 850px;
}

.hero-small {
    display: inline-block;

    color: #ffffff;

    font-size: 16px;
    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 20px;

    padding: 7px 15px;

    border: 1px solid
        rgba(255, 255, 255, 0.35);

    border-radius: 25px;

    background:
        rgba(255, 255, 255, 0.08);
}

.hero h1 {
    font-size: 70px;

    line-height: 1.05;

    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--yellow);
}

.hero p {
    max-width: 700px;

    font-size: 20px;

    color: rgba(255, 255, 255, 0.90);

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}


/* ==========================================
   BUTTONS
========================================== */

.btn {
    display: inline-block;

    padding: 14px 25px;

    border-radius: 30px;

    font-weight: 700;

    transition: 0.3s;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
}

.btn-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 25px
        rgba(0, 0, 0, 0.20);
}

.btn-secondary {
    border: 2px solid #ffffff;

    color: #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;

    color: var(--purple-dark);
}

.btn-light {
    background: #ffffff;

    color: var(--purple);

    margin-top: 12px;
}


/* ==========================================
   GENERAL SECTIONS
========================================== */

.section {
    padding: 95px 0;
}

.section-label {
    display: inline-block;

    color: var(--pink);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    margin-bottom: 10px;
}

.section-heading {
    text-align: center;

    max-width: 700px;

    margin: 0 auto 50px;
}

.section-heading h2,
.about-text h2,
.event-content h2 {

    color: var(--purple-dark);

    font-size: 42px;

    line-height: 1.2;

    margin-bottom: 18px;
}

.section-heading p {
    color: var(--grey);

    font-size: 17px;
}


/* ==========================================
   ABOUT SECTION
========================================== */

.about-section {
    background: #ffffff;
}

.two-columns {
    display: grid;

    grid-template-columns:
        1.3fr 0.7fr;

    gap: 60px;

    align-items: center;
}

.about-text p {
    margin-bottom: 18px;

    color: var(--grey);

    font-size: 17px;
}

.text-link {
    display: inline-block;

    color: var(--pink);

    font-weight: 700;

    margin-top: 10px;

    transition: 0.3s;
}

.text-link:hover {
    color: var(--purple);
}

.about-card {
    padding: 50px 40px;

    color: #ffffff;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            var(--purple-dark),
            var(--purple),
            var(--pink),
            var(--orange)
        );

    box-shadow:
        0 20px 50px
        rgba(74, 20, 95, 0.20);

    border-bottom: 6px solid var(--yellow);
}

.about-card h3 {
    font-size: 30px;

    margin-bottom: 18px;

    color: #f6ca60;
}

.about-card p {
    font-size: 17px;

    color: rgba(255, 255, 255, 0.9);
}


/* ==========================================
   PROGRAMS
========================================== */

.programs-section {
    background: var(--light-grey);
}

.program-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.program-card {
    min-height: 300px;

    background: #ffffff;

    padding: 38px 32px;

    border-radius: 22px;

    color: var(--dark);

    border: 1px solid rgba(0, 0, 0, 0.06);

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;

    position: relative;

    overflow: hidden;
}

.program-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 20px 45px
        rgba(74, 20, 95, 0.16);

    border-color:
        rgba(111, 42, 142, 0.18);
}

.program-icon {
    width: 60px;
    height: 60px;

    display: flex;

    justify-content: center;
    align-items: center;

    font-size: 30px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #f2e8f5,
            #fdeaf5
        );

    margin-bottom: 22px;
}

.program-card h3 {
    color: var(--purple-dark);

    font-size: 22px;

    margin-bottom: 12px;
}

.program-card p {
    color: var(--grey);

    font-size: 15px;
}


/* Last two cards centered nicely */

.program-card:nth-child(4) {
    grid-column: 1 / 2;
}

.program-card:nth-child(5) {
    grid-column: 2 / 3;
}

/* ==========================================
   WEINSE PROGRAM COLORS
========================================== */

/* Coaching & Mentoring */

.program-card:nth-child(1) {
    border-top: 5px solid var(--purple);
}

.program-card:nth-child(1) .program-icon {
    background: var(--light-purple);
}

.program-card:nth-child(1) h3 {
    color: var(--purple);
}


/* Training */

.program-card:nth-child(2) {
    border-top: 5px solid var(--orange);
}

.program-card:nth-child(2) .program-icon {
    background: var(--light-orange);
}

.program-card:nth-child(2) h3 {
    color: var(--orange);
}


/* Consultancy */

.program-card:nth-child(3) {
    border-top: 5px solid var(--blue);
}

.program-card:nth-child(3) .program-icon {
    background: var(--light-blue);
}

.program-card:nth-child(3) h3 {
    color: var(--blue);
}


/* Capacity Building */

.program-card:nth-child(4) {
    border-top: 5px solid var(--green);
}

.program-card:nth-child(4) .program-icon {
    background: var(--light-green);
}

.program-card:nth-child(4) h3 {
    color: var(--green-dark);
}


/* Research */

.program-card:nth-child(5) {
    border-top: 5px solid var(--pink);
}

.program-card:nth-child(5) .program-icon {
    background: var(--light-pink);
}

.program-card:nth-child(5) h3 {
    color: var(--pink);
}
/* ==========================================
   EVENT SECTION
========================================== */

.event-section {
    background: #ffffff;
}

.event-box {
    display: grid;

    grid-template-columns:
        220px 1fr;

    gap: 50px;

    align-items: center;

    padding: 60px;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            #f8f1fa,
            #fff5fa
        );

    box-shadow:
        0 15px 45px
        rgba(74, 20, 95, 0.08);
}

.event-date {
    min-height: 210px;

    display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    border-radius: 20px;

    color: #ffffff;

 background:
    linear-gradient(
        145deg,
        var(--orange),
        var(--red),
        var(--pink)
    );

    box-shadow:
        0 15px 30px
        rgba(74, 20, 95, 0.2);
}

.event-date span {
    font-size: 72px;

    font-weight: 800;

    line-height: 1;
}

.event-date strong {
    font-size: 20px;

    margin-top: 8px;
}

.event-date small {
    font-size: 17px;

    color: #f7d27b;
}

.event-content p {
    color: var(--grey);

    margin-bottom: 15px;

    font-size: 17px;
}

.event-location {
    margin-bottom: 25px;

    color: var(--purple);

    font-weight: 700;
}


/* ==========================================
   PROJECT SECTION
========================================== */

.projects-section {
    background: var(--light-grey);
}

.project-placeholder {
    max-width: 850px;

    margin: auto;

    padding: 55px;

    text-align: center;

    border-radius: 22px;

    background: #ffffff;

    border:
        1px solid
        rgba(111, 42, 142, 0.12);

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.05);
}

.project-placeholder h3 {
    color: var(--purple-dark);

    font-size: 28px;

    margin-bottom: 14px;
}

.project-placeholder p {
    color: var(--grey);
}


/* ==========================================
   MEMBERSHIP CTA
========================================== */

.membership-cta {
    text-align: center;

    padding: 90px 20px;

    color: #ffffff;

background:
    linear-gradient(
        120deg,
        var(--blue-dark) 0%,
        var(--purple) 35%,
        var(--pink) 70%,
        var(--orange) 100%
    );
}

.membership-cta h2 {
    font-size: 42px;

    margin-bottom: 15px;
}

.membership-cta p {
    max-width: 700px;

    margin:
        0 auto 20px;

    font-size: 18px;

    color:
        rgba(255, 255, 255, 0.9);
}


/* ==========================================
   FOOTER
========================================== */

.site-footer {
    background: #211429;

    color: #ffffff;

    padding-top: 70px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1.2fr;

    gap: 45px;

    padding-bottom: 55px;
}

.footer-logo {
    width: 145px;

    margin-bottom: 18px;

    background: #ffffff;

    padding: 8px;

    border-radius: 8px;
}

.footer-about p {
    max-width: 300px;

    color: rgba(255, 255, 255, 0.72);

    margin-bottom: 10px;
}

.footer-about strong {
    color: #f4c456;
}

.site-footer h4 {
    color: #f4c456;

    margin-bottom: 18px;

    font-size: 18px;
}

.site-footer ul li {
    margin-bottom: 9px;
}

.site-footer a {
    color:
        rgba(255, 255, 255, 0.75);

    transition: 0.3s;
}

.site-footer a:hover {
    color: #ffffff;
}

.site-footer p {
    color:
        rgba(255, 255, 255, 0.75);
}

.footer-bottom {
    text-align: center;

    padding: 22px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
}
/* ==========================================
   ABOUT US PAGE
========================================== */


/* ---------- ABOUT HERO ---------- */

.about-page-hero {
    position: relative;

    min-height: 470px;

    display: flex;
    align-items: center;

    padding: 90px 0;

    color: #ffffff;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            var(--blue-dark) 0%,
            var(--blue) 35%,
            var(--green) 72%,
            var(--orange) 100%
        );
}


/* Decorative circle */

.about-page-hero::after {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    right: -100px;
    top: -140px;

    background:
        rgba(255, 255, 255, 0.10);
}


.about-page-hero .container {
    position: relative;
    z-index: 2;
}


.about-page-hero .section-label {
    color: var(--yellow);
}


.about-page-hero h1 {
    max-width: 850px;

    font-size: 58px;

    line-height: 1.1;

    margin-bottom: 22px;

    color: #ffffff;
}


.about-page-hero p {
    max-width: 760px;

    font-size: 19px;

    line-height: 1.7;

    color: rgba(255, 255, 255, 0.94);
}
/* ==========================================
   ABOUT PAGE - WHO WE ARE
========================================== */

.about-page-grid {
    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    gap: 65px;

    align-items: center;
}


/* Main heading */

.about-page-grid h2 {
    color: var(--blue-dark);

    font-size: 42px;

    line-height: 1.2;

    margin-bottom: 22px;
}


/* Main text */

.about-page-grid p {
    color: var(--grey);

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 18px;
}


/* ==========================================
   EMPOWER - INTEGRATE - INSPIRE BOX
========================================== */

.about-highlight-box {
    position: relative;

    padding: 50px 40px;

    border-radius: 24px;

    color: #ffffff;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            var(--purple-dark) 0%,
            var(--purple) 35%,
            var(--pink) 70%,
            var(--orange) 100%
        );

    border-bottom:
        7px solid var(--yellow);

    box-shadow:
        0 20px 45px
        rgba(74, 20, 95, 0.18);
}
/* ==========================================
   ABOUT PAGE - MISSION & VISION
========================================== */

.mission-vision-section {
    background: var(--light-grey);
}

.mission-vision-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;
}


/* Shared card style */

.mission-card,
.vision-card {
    padding: 45px 38px;

    border-radius: 24px;

    color: #ffffff;

    min-height: 300px;

    position: relative;

    overflow: hidden;

    box-shadow:
        0 18px 40px
        rgba(0, 0, 0, 0.10);

    transition: 0.35s;
}


.mission-card:hover,
.vision-card:hover {
    transform: translateY(-8px);
}


/* Mission */

.mission-card {
    background:
        linear-gradient(
            145deg,
            var(--blue-dark),
            var(--blue),
            var(--green)
        );

    border-bottom:
        7px solid var(--yellow);
}


/* Vision */

.vision-card {
    background:
        linear-gradient(
            145deg,
            var(--purple-dark),
            var(--purple),
            var(--pink),
            var(--orange)
        );

    border-bottom:
        7px solid var(--orange-light);
}


/* Icon */

.mission-icon {
    display: inline-flex;

    width: 65px;
    height: 65px;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    font-size: 30px;

    margin-bottom: 22px;

    background:
        rgba(255, 255, 255, 0.15);
}


/* Titles */

.mission-card h2,
.vision-card h2 {
    color: #ffffff;

    font-size: 32px;

    margin-bottom: 15px;
}


/* Text */

.mission-card p,
.vision-card p {
    color:
        rgba(255, 255, 255, 0.94);

    font-size: 17px;

    line-height: 1.8;
}

/* Decorative circle */

.about-highlight-box::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    right: -65px;
    bottom: -70px;

    background:
        rgba(255, 255, 255, 0.10);
}


/* Highlight title */

.about-highlight-box h3 {
    position: relative;

    z-index: 2;

    color: var(--yellow);

    font-size: 30px;

    line-height: 1.25;

    margin-bottom: 18px;
}


/* Highlight text */

.about-highlight-box p {
    position: relative;

    z-index: 2;

    color:
        rgba(255, 255, 255, 0.94);

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 0;
}
/* ==========================================
   ABOUT PAGE - OUR VALUES
========================================== */

.values-section {
    background: #ffffff;
}


/* Values grid */

.values-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


/* Shared value card */

.value-card {
    position: relative;

    background: #ffffff;

    padding: 35px 30px;

    border-radius: 20px;

    min-height: 270px;

    border:
        1px solid
        rgba(0, 0, 0, 0.06);

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.07);

    transition: 0.35s;
}


.value-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 40px
        rgba(74, 20, 95, 0.13);
}


/* Value icons */

.value-icon {
    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    font-size: 29px;

    margin-bottom: 22px;
}


/* Value title */

.value-card h3 {
    font-size: 22px;

    margin-bottom: 12px;
}


/* Value text */

.value-card p {
    color: var(--grey);

    font-size: 15px;

    line-height: 1.75;
}


/* ==========================================
   INDIVIDUAL VALUE COLORS
========================================== */


/* 1 - Empowerment */

.value-card:nth-child(1) {
    border-top:
        5px solid var(--purple);
}

.value-card:nth-child(1) .value-icon {
    background: var(--light-purple);
}

.value-card:nth-child(1) h3 {
    color: var(--purple);
}


/* 2 - Inclusion */

.value-card:nth-child(2) {
    border-top:
        5px solid var(--blue);
}

.value-card:nth-child(2) .value-icon {
    background: var(--light-blue);
}

.value-card:nth-child(2) h3 {
    color: var(--blue);
}


/* 3 - Growth */

.value-card:nth-child(3) {
    border-top:
        5px solid var(--green);
}

.value-card:nth-child(3) .value-icon {
    background: var(--light-green);
}

.value-card:nth-child(3) h3 {
    color: var(--green-dark);
}


/* 4 - Diversity */

.value-card:nth-child(4) {
    border-top:
        5px solid var(--orange);
}

.value-card:nth-child(4) .value-icon {
    background: var(--light-orange);
}

.value-card:nth-child(4) h3 {
    color: var(--orange);
}


/* 5 - Knowledge */

.value-card:nth-child(5) {
    border-top:
        5px solid var(--pink);
}

.value-card:nth-child(5) .value-icon {
    background: var(--light-pink);
}

.value-card:nth-child(5) h3 {
    color: var(--pink);
}


/* 6 - Collaboration */

.value-card:nth-child(6) {
    border-top:
        5px solid var(--yellow);
}

.value-card:nth-child(6) .value-icon {
    background: #fff8dc;
}

.value-card:nth-child(6) h3 {
    color: var(--gold);
}
/* ==========================================
   PROGRAMS OVERVIEW PAGE
========================================== */

.programs-intro {
    max-width: 850px;
    text-align: center;
}

.programs-intro h2 {
    color: var(--purple-dark);
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.programs-intro p {
    color: var(--grey);
    font-size: 18px;
    line-height: 1.8;
}


/* Programs background */

.programs-overview-section {
    background: var(--light-grey);
}


/* Five program cards */

.program-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}


/* Individual card */

.program-overview-card {
    position: relative;

    min-height: 370px;

    display: flex;
    flex-direction: column;

    padding: 38px 32px;

    background: #ffffff;

    border-radius: 22px;

    color: var(--dark);

    overflow: hidden;

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


/* Hover */

.program-overview-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 22px 45px
        rgba(74, 20, 95, 0.16);
}


/* Program number */

.overview-number {
    position: absolute;

    top: 20px;
    right: 25px;

    font-size: 45px;
    font-weight: 800;

    opacity: 0.10;
}


/* Icon */

.overview-icon {
    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    font-size: 32px;

    margin-bottom: 25px;
}


/* Card title */

.program-overview-card h3 {
    font-size: 24px;

    margin-bottom: 15px;

    line-height: 1.25;
}


/* Card text */

.program-overview-card p {
    color: var(--grey);

    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 25px;
}


/* Explore link */

.overview-link {
    margin-top: auto;

    font-weight: 700;

    font-size: 15px;
}


/* ==========================================
   INDIVIDUAL WEINSE PROGRAM COLORS
========================================== */


/* 01 - Coaching & Mentoring */

.program-purple {
    border-top: 6px solid var(--purple);
}

.program-purple .overview-icon {
    background: var(--light-purple);
}

.program-purple h3,
.program-purple .overview-link {
    color: var(--purple);
}


/* 02 - Training */

.program-orange {
    border-top: 6px solid var(--orange);
}

.program-orange .overview-icon {
    background: var(--light-orange);
}

.program-orange h3,
.program-orange .overview-link {
    color: var(--orange);
}


/* 03 - Consultancy */

.program-blue {
    border-top: 6px solid var(--blue);
}

.program-blue .overview-icon {
    background: var(--light-blue);
}

.program-blue h3,
.program-blue .overview-link {
    color: var(--blue);
}


/* 04 - Capacity Building */

.program-green {
    border-top: 6px solid var(--green);
}

.program-green .overview-icon {
    background: var(--light-green);
}

.program-green h3,
.program-green .overview-link {
    color: var(--green-dark);
}


/* 05 - Research */

.program-pink {
    border-top: 6px solid var(--pink);
}

.program-pink .overview-icon {
    background: var(--light-pink);
}

.program-pink h3,
.program-pink .overview-link {
    color: var(--pink);
}
/* ==========================================
   PROGRAM INNER PAGES
========================================== */


/* ---------- PROGRAM HERO ---------- */

.program-page-hero {
    position: relative;

    min-height: 430px;

    display: flex;
    align-items: center;

    padding: 80px 0;

    color: #ffffff;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            var(--purple-dark) 0%,
            var(--purple) 40%,
            var(--pink) 75%,
            var(--orange) 100%
        );
}


/* Decorative circle */

.program-page-hero::after {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    right: -100px;
    top: -120px;

    background:
        rgba(255, 255, 255, 0.08);
}


.program-page-hero .container {
    position: relative;
    z-index: 2;
}


.program-page-hero .section-label {
    color: var(--yellow);
}


.program-page-hero h1 {
    max-width: 800px;

    font-size: 58px;

    line-height: 1.1;

    margin-bottom: 20px;
}


.program-page-hero p {
    max-width: 720px;

    font-size: 19px;

    line-height: 1.7;

    color:
        rgba(255, 255, 255, 0.92);
}


/* ==========================================
   PROGRAM INTRODUCTION
========================================== */

.program-content {
    display: grid;

    grid-template-columns:
        1.3fr 0.7fr;

    gap: 60px;

    align-items: center;
}


.program-content h2 {
    color: var(--purple-dark);

    font-size: 42px;

    line-height: 1.2;

    margin-bottom: 20px;
}


.program-content p {
    color: var(--grey);

    font-size: 17px;

    margin-bottom: 18px;
}


/* Highlight card */

.program-highlight-card {
    padding: 45px 38px;

    border-radius: 22px;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            var(--purple),
            var(--pink),
            var(--orange)
        );

    border-bottom:
        6px solid var(--yellow);

    box-shadow:
        0 18px 40px
        rgba(74, 20, 95, 0.18);
}


.program-highlight-card h3 {
    color: var(--yellow);

    font-size: 28px;

    margin-bottom: 15px;
}


.program-highlight-card p {
    color:
        rgba(255, 255, 255, 0.92);

    margin-bottom: 0;
}


/* ==========================================
   WHAT WE OFFER
========================================== */

.program-details-section {
    background: var(--light-grey);
}


.program-details-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


.detail-card {
    background: #ffffff;

    padding: 35px 30px;

    border-radius: 20px;

    min-height: 220px;

    border-top:
        5px solid var(--purple);

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.07);

    transition: 0.35s;
}


.detail-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 40px
        rgba(74, 20, 95, 0.13);
}


.detail-card h3 {
    color: var(--purple-dark);

    font-size: 21px;

    margin-bottom: 12px;
}


.detail-card p {
    color: var(--grey);

    font-size: 15px;
}


/* WEINSE colors across the six cards */

.detail-card:nth-child(1) {
    border-top-color: var(--purple);
}

.detail-card:nth-child(2) {
    border-top-color: var(--pink);
}

.detail-card:nth-child(3) {
    border-top-color: var(--orange);
}

.detail-card:nth-child(4) {
    border-top-color: var(--yellow);
}

.detail-card:nth-child(5) {
    border-top-color: var(--green);
}

.detail-card:nth-child(6) {
    border-top-color: var(--blue);
}


/* ==========================================
   PROGRAM AUDIENCE
========================================== */

.program-audience {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 60px;

    align-items: center;
}


.program-audience h2 {
    color: var(--purple-dark);

    font-size: 40px;

    line-height: 1.2;

    margin-bottom: 20px;
}


.program-audience p {
    color: var(--grey);

    font-size: 17px;
}


.audience-list {
    display: grid;

    gap: 12px;
}


.audience-list div {
    background: var(--light-purple);

    color: var(--purple-dark);

    padding: 16px 20px;

    border-radius: 12px;

    font-weight: 600;

    border-left:
        5px solid var(--purple);
}


.audience-list div:nth-child(2) {
    border-left-color: var(--pink);
}

.audience-list div:nth-child(3) {
    border-left-color: var(--orange);
}

.audience-list div:nth-child(4) {
    border-left-color: var(--green);
}

.audience-list div:nth-child(5) {
    border-left-color: var(--blue);
}


/* ==========================================
   PROGRAM CTA
========================================== */

.program-cta {
    padding: 85px 20px;

    text-align: center;

    color: #ffffff;

    background:
        linear-gradient(
            120deg,
            var(--blue-dark),
            var(--purple),
            var(--pink),
            var(--orange)
        );
}


.program-cta h2 {
    font-size: 40px;

    margin-bottom: 15px;
}


.program-cta p {
    max-width: 680px;

    margin:
        0 auto 25px;

    font-size: 17px;

    color:
        rgba(255, 255, 255, 0.90);
}

/* ==========================================
   NEWS & EVENTS PAGE
========================================== */


/* ---------- NEWS HERO ---------- */

.news-page-hero {
    position: relative;

    min-height: 460px;

    display: flex;
    align-items: center;

    padding: 90px 0;

    color: #ffffff;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            var(--red) 0%,
            var(--pink) 35%,
            var(--orange) 72%,
            var(--gold) 100%
        );
}


.news-page-hero::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    right: -110px;
    top: -140px;

    background:
        rgba(255, 255, 255, 0.10);
}


.news-page-hero .container {
    position: relative;
    z-index: 2;
}


.news-page-hero .section-label {
    color: #ffffff;
}


.news-page-hero h1 {
    max-width: 850px;

    font-size: 58px;

    line-height: 1.1;

    margin-bottom: 22px;

    color: #ffffff;
}


.news-page-hero p {
    max-width: 760px;

    font-size: 19px;

    line-height: 1.7;

    color: rgba(255, 255, 255, 0.94);
}
/* ==========================================
   EVENT FLYER VISUAL
========================================== */

.event-visual-section {
    padding: 70px 0 25px;

    background: #ffffff;
}

.event-visual {
    max-width: 1100px;

    margin: 0 auto;

    padding: 12px;

    background: #ffffff;

    border-radius: 24px;

    box-shadow:
        0 18px 50px
        rgba(0, 0, 0, 0.12);
}

.event-visual img {
    display: block;

    width: 100%;
    height: auto;

    border-radius: 16px;
}

/* ==========================================
   FEATURED EVENT
========================================== */

.featured-event-card {
    display: grid;

    grid-template-columns:
        240px 1fr;

    gap: 45px;

    align-items: center;

    padding: 55px;

    border-radius: 26px;

    background:
        linear-gradient(
            135deg,
            #fff6ef,
            #fff2f7
        );

    box-shadow:
        0 18px 45px
        rgba(0, 0, 0, 0.08);
}


.featured-event-date {
    min-height: 240px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    border-radius: 22px;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            var(--orange),
            var(--red),
            var(--pink)
        );

    box-shadow:
        0 15px 35px
        rgba(216, 58, 58, 0.20);
}


.featured-event-date span {
    font-size: 76px;

    font-weight: 800;

    line-height: 1;
}


.featured-event-date strong {
    font-size: 21px;

    margin-top: 10px;
}


.featured-event-date small {
    font-size: 18px;

    color: var(--yellow);
}


.featured-event-content h3 {
    color: var(--purple-dark);

    font-size: 34px;

    line-height: 1.2;

    margin-bottom: 20px;
}


.featured-event-content p {
    color: var(--grey);

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 25px;
}


.event-badge {
    display: inline-block;

    padding: 7px 14px;

    margin-bottom: 16px;

    border-radius: 20px;

    background: var(--light-orange);

    color: var(--red);

    font-size: 13px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.event-info-list {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;

    margin-bottom: 22px;
}


.event-info-list div {
    padding: 12px 16px;

    border-radius: 12px;

    background: #ffffff;

    color: var(--dark);

    font-weight: 600;

    box-shadow:
        0 5px 15px
        rgba(0, 0, 0, 0.04);
}


/* ==========================================
   NEWS GRID
========================================== */

.news-list-section {
    background: var(--light-grey);
}


.news-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


.news-card {
    background: #ffffff;

    padding: 34px 30px;

    border-radius: 20px;

    min-height: 270px;

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.07);

    border-top:
        5px solid var(--orange);

    transition: 0.35s;
}


.news-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 40px
        rgba(0, 0, 0, 0.12);
}


.news-card:nth-child(2) {
    border-top-color: var(--pink);
}


.news-card:nth-child(3) {
    border-top-color: var(--gold);
}


.news-card-label {
    display: inline-block;

    margin-bottom: 16px;

    padding: 6px 12px;

    border-radius: 18px;

    background: var(--light-orange);

    color: var(--red);

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;
}


.news-card:nth-child(2) .news-card-label {
    background: var(--light-pink);
    color: var(--pink);
}


.news-card:nth-child(3) .news-card-label {
    background: #fff8dc;
    color: var(--gold);
}


.news-card h3 {
    color: var(--purple-dark);

    font-size: 22px;

    line-height: 1.3;

    margin-bottom: 14px;
}


.news-card p {
    color: var(--grey);

    font-size: 15px;

    line-height: 1.75;

    margin-bottom: 20px;
}


.news-card a {
    color: var(--pink);

    font-weight: 700;
}
/* ==========================================
   MEMBERSHIP PAGE
========================================== */


/* ---------- MEMBERSHIP HERO ---------- */

.membership-page-hero {
    position: relative;

    min-height: 460px;

    display: flex;
    align-items: center;

    padding: 90px 0;

    color: #ffffff;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            var(--purple-dark) 0%,
            var(--purple) 35%,
            var(--blue) 70%,
            var(--green) 100%
        );
}


.membership-page-hero::after {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    right: -110px;
    top: -140px;

    background:
        rgba(255, 255, 255, 0.10);
}


.membership-page-hero .container {
    position: relative;
    z-index: 2;
}


.membership-page-hero .section-label {
    color: var(--yellow);
}


.membership-page-hero h1 {
    max-width: 850px;

    font-size: 58px;

    line-height: 1.1;

    margin-bottom: 22px;

    color: #ffffff;
}


.membership-page-hero p {
    max-width: 760px;

    font-size: 19px;

    line-height: 1.7;

    color:
        rgba(255, 255, 255, 0.94);
}


/* ==========================================
   MEMBERSHIP INTRO
========================================== */

.membership-intro-grid {
    display: grid;

    grid-template-columns:
        1.2fr 0.8fr;

    gap: 60px;

    align-items: center;
}


.membership-intro-grid h2 {
    color: var(--purple-dark);

    font-size: 42px;

    line-height: 1.2;

    margin-bottom: 20px;
}


.membership-intro-grid p {
    color: var(--grey);

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 16px;
}


/* Membership price */

.membership-price-card {
    text-align: center;

    padding: 50px 35px;

    border-radius: 24px;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            var(--blue-dark),
            var(--blue),
            var(--green)
        );

    border-bottom:
        7px solid var(--yellow);

    box-shadow:
        0 18px 40px
        rgba(40, 90, 145, 0.18);
}


.membership-price {
    display: block;

    font-size: 52px;

    font-weight: 800;

    line-height: 1;

    color: var(--yellow);

    margin-bottom: 10px;
}


.membership-price-card strong {
    display: block;

    font-size: 20px;

    margin-bottom: 15px;
}


.membership-price-card p {
    color:
        rgba(255, 255, 255, 0.90);

    margin: 0;
}


/* ==========================================
   MEMBERSHIP BENEFITS
========================================== */

.membership-benefits-section {
    background: var(--light-grey);
}


.membership-benefits-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 24px;
}


.membership-benefit-card {
    background: #ffffff;

    padding: 32px 26px;

    min-height: 260px;

    border-radius: 20px;

    border-top:
        5px solid var(--purple);

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.07);

    transition: 0.35s;
}


.membership-benefit-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 40px
        rgba(74, 20, 95, 0.12);
}


.membership-benefit-icon {
    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    font-size: 29px;

    margin-bottom: 22px;

    background: var(--light-purple);
}


.membership-benefit-card h3 {
    color: var(--purple);

    font-size: 21px;

    margin-bottom: 12px;
}


.membership-benefit-card p {
    color: var(--grey);

    font-size: 15px;

    line-height: 1.7;
}


/* Different colors */

.membership-benefit-card:nth-child(2) {
    border-top-color: var(--orange);
}

.membership-benefit-card:nth-child(2)
.membership-benefit-icon {
    background: var(--light-orange);
}

.membership-benefit-card:nth-child(2) h3 {
    color: var(--orange);
}


.membership-benefit-card:nth-child(3) {
    border-top-color: var(--blue);
}

.membership-benefit-card:nth-child(3)
.membership-benefit-icon {
    background: var(--light-blue);
}

.membership-benefit-card:nth-child(3) h3 {
    color: var(--blue);
}


.membership-benefit-card:nth-child(4) {
    border-top-color: var(--green);
}

.membership-benefit-card:nth-child(4)
.membership-benefit-icon {
    background: var(--light-green);
}

.membership-benefit-card:nth-child(4) h3 {
    color: var(--green-dark);
}


/* ==========================================
   MEMBERSHIP FORM
========================================== */

.membership-form-section {
    background: #ffffff;
}


.membership-form {
    max-width: 900px;

    margin: 0 auto;

    padding: 45px;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #faf8fc
        );

    border-radius: 26px;

    box-shadow:
        0 20px 50px
        rgba(74, 20, 95, 0.10);

    border:
        1px solid
        rgba(112, 34, 131, 0.10);
}


.form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 22px;
}


.form-group {
    display: flex;

    flex-direction: column;

    margin-bottom: 22px;
}


.form-group label {
    color: var(--purple-dark);

    font-weight: 700;

    margin-bottom: 8px;

    font-size: 14px;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 14px 16px;

    border-radius: 12px;

    border:
        1px solid
        #d8d3dc;

    background: #ffffff;

    color: var(--dark);

    font-size: 16px;

    font-family: inherit;

    transition: 0.25s;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;

    border-color: var(--purple);

    box-shadow:
        0 0 0 3px
        rgba(112, 34, 131, 0.10);
}


.form-group textarea {
    resize: vertical;

    min-height: 140px;
}


/* Consent */

.membership-consent {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 18px;

    margin-bottom: 26px;

    background: var(--light-purple);

    border-radius: 14px;
}


.membership-consent input {
    margin-top: 5px;

    width: 18px;
    height: 18px;
}


.membership-consent label {
    color: var(--grey);

    font-size: 14px;

    line-height: 1.6;
}


/* Submit button */

.membership-form .btn-primary {
    border: none;

    cursor: pointer;

    font-size: 16px;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--pink),
            var(--orange)
        );

    color: #ffffff;

    padding: 15px 28px;
}


.membership-form .btn-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 25px
        rgba(112, 34, 131, 0.20);
}
/* ==========================================
   PUBLICATIONS PAGE
========================================== */


/* ---------- PUBLICATION HERO ---------- */

.publication-page-hero {
    position: relative;

    min-height: 460px;

    display: flex;
    align-items: center;

    padding: 90px 0;

    color: #ffffff;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            var(--blue-dark) 0%,
            var(--purple-dark) 40%,
            var(--purple) 72%,
            var(--gold) 100%
        );
}


.publication-page-hero::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    right: -110px;
    top: -140px;

    background:
        rgba(255, 255, 255, 0.08);
}


.publication-page-hero .container {
    position: relative;
    z-index: 2;
}


.publication-page-hero .section-label {
    color: var(--yellow);
}


.publication-page-hero h1 {
    max-width: 850px;

    font-size: 58px;

    line-height: 1.1;

    margin-bottom: 22px;

    color: #ffffff;
}


.publication-page-hero p {
    max-width: 760px;

    font-size: 19px;

    line-height: 1.7;

    color:
        rgba(255, 255, 255, 0.94);
}


/* ==========================================
   PUBLICATION INTRO
========================================== */

.publication-intro {
    max-width: 850px;

    text-align: center;
}


.publication-intro h2 {
    color: var(--blue-dark);

    font-size: 42px;

    line-height: 1.2;

    margin-bottom: 20px;
}


.publication-intro p {
    color: var(--grey);

    font-size: 18px;

    line-height: 1.8;
}


/* ==========================================
   PUBLICATIONS SECTION
========================================== */

.publications-section {
    background:
        linear-gradient(
            180deg,
            #f7f8fb,
            #f4f1f7
        );
}


.publications-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 28px;
}


/* ==========================================
   PUBLICATION CARDS
========================================== */

.publication-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 500px;

    padding: 38px 32px;

    background: #ffffff;

    border-radius: 22px;

    color: var(--dark);

    border-top:
        6px solid var(--purple);

    box-shadow:
        0 12px 32px
        rgba(0, 0, 0, 0.07);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;

    overflow: hidden;
}


.publication-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 22px 45px
        rgba(40, 90, 145, 0.14);
}


/* Number */

.publication-number {
    position: absolute;

    top: 18px;
    right: 22px;

    font-size: 46px;

    font-weight: 800;

    opacity: 0.08;
}


/* Icon */

.publication-icon {
    width: 66px;
    height: 66px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    font-size: 31px;

    margin-bottom: 22px;

    background: var(--light-purple);
}


/* Type badge */

.publication-type {
    display: inline-block;

    width: fit-content;

    padding: 6px 12px;

    margin-bottom: 16px;

    border-radius: 18px;

    background: var(--light-blue);

    color: var(--blue-dark);

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.7px;
}


/* Title */

.publication-card h3 {
    color: var(--purple-dark);

    font-size: 22px;

    line-height: 1.35;

    margin-bottom: 16px;
}


/* Authors */

.publication-authors {
    color: var(--blue-dark);

    font-size: 14px;

    font-weight: 700;

    line-height: 1.6;

    margin-bottom: 8px;
}


/* Year */

.publication-year {
    color: var(--gold);

    font-weight: 800;

    margin-bottom: 14px;
}


/* Description */

.publication-description {
    color: var(--grey);

    font-size: 15px;

    line-height: 1.75;

    margin-bottom: 24px;
}


/* Link */

.publication-link {
    margin-top: auto;

    font-weight: 700;

    color: var(--purple);

    transition: 0.25s;
}


.publication-link:hover {
    color: var(--blue-dark);
}


/* ==========================================
   INDIVIDUAL PUBLICATION COLORS
========================================== */


/* Publication 1 */

.publication-purple {
    border-top-color: var(--purple);
}

.publication-purple .publication-icon {
    background: var(--light-purple);
}


/* Publication 2 */

.publication-blue {
    border-top-color: var(--blue);
}

.publication-blue .publication-icon {
    background: var(--light-blue);
}

.publication-blue h3,
.publication-blue .publication-link {
    color: var(--blue-dark);
}


/* Publication 3 */

.publication-green {
    border-top-color: var(--green);
}

.publication-green .publication-icon {
    background: var(--light-green);
}

.publication-green h3,
.publication-green .publication-link {
    color: var(--green-dark);
}


/* ==========================================
   PUBLICATION CTA
========================================== */

.publication-cta {
    padding: 90px 20px;

    text-align: center;

    color: #ffffff;

    background:
        linear-gradient(
            120deg,
            var(--blue-dark),
            var(--purple),
            var(--green-dark)
        );
}


.publication-cta h2 {
    font-size: 40px;

    margin-bottom: 15px;
}


.publication-cta p {
    max-width: 720px;

    margin:
        0 auto 25px;

    font-size: 17px;

    line-height: 1.8;

    color:
        rgba(255, 255, 255, 0.92);
}
/* ==========================================
   BLOG - COMING SOON
========================================== */

.blog-coming-soon {
    min-height: 650px;

    display: flex;
    align-items: center;

    text-align: center;

    padding: 100px 20px;

    color: #ffffff;

    background:
        linear-gradient(
            120deg,
            var(--purple-dark),
            var(--purple),
            var(--pink),
            var(--orange)
        );
}

.coming-soon-content {
    max-width: 760px;
    margin: 0 auto;
}

.coming-soon-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.coming-soon-content h1 {
    font-size: 64px;

    margin-bottom: 20px;

    color: #ffffff;
}

.coming-soon-content p {
    font-size: 19px;

    line-height: 1.8;

    color:
        rgba(255,255,255,0.94);

    margin-bottom: 15px;
}

.coming-soon-small {
    font-size: 16px !important;
}

.coming-soon-buttons {
    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;

    margin-top: 30px;
}
/* ==========================================
   PROJECTS PAGE
========================================== */


/* ---------- PROJECTS HERO ---------- */

.projects-page-hero {
    position: relative;

    min-height: 480px;

    display: flex;
    align-items: center;

    padding: 95px 0;

    color: #ffffff;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            var(--purple-dark) 0%,
            var(--purple) 35%,
            var(--blue) 70%,
            var(--green) 100%
        );
}


.projects-page-hero::after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    right: -120px;
    top: -150px;

    background:
        rgba(255, 255, 255, 0.09);
}


.projects-page-hero .container {
    position: relative;
    z-index: 2;
}


.projects-page-hero .section-label {
    color: var(--yellow);
}


.projects-page-hero h1 {
    max-width: 850px;

    font-size: 58px;

    line-height: 1.1;

    margin-bottom: 22px;

    color: #ffffff;
}


.projects-page-hero p {
    max-width: 760px;

    font-size: 19px;

    line-height: 1.75;

    color:
        rgba(255, 255, 255, 0.94);
}


/* ==========================================
   PROJECTS INTRO
========================================== */

.projects-intro {
    max-width: 850px;

    text-align: center;
}


.projects-intro h2 {
    color: var(--purple-dark);

    font-size: 42px;

    line-height: 1.2;

    margin-bottom: 20px;
}


.projects-intro p {
    color: var(--grey);

    font-size: 18px;

    line-height: 1.8;
}


/* ==========================================
   FEATURED PROJECT
========================================== */

.featured-project-section {
    background:
        linear-gradient(
            180deg,
            #f8f6fa,
            #f3f8f5
        );
}


.featured-project-card {
    background: #ffffff;

    border-radius: 28px;

    overflow: hidden;

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.09);

    border:
        1px solid
        rgba(112, 34, 131, 0.08);
}


/* Top area */

.featured-project-top {
    display: grid;

    grid-template-columns:
        1fr 260px;

    gap: 45px;

    align-items: center;

    padding: 50px;
}


.project-status {
    display: inline-block;

    padding: 8px 16px;

    margin-bottom: 18px;

    border-radius: 20px;

    background: var(--light-purple);

    color: var(--purple);

    font-size: 13px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.7px;
}


.featured-project-top h3 {
    color: var(--purple-dark);

    font-size: 34px;

    line-height: 1.25;

    margin-bottom: 18px;
}


.project-lead {
    color: var(--grey);

    font-size: 17px;

    line-height: 1.8;
}


/* ==========================================
   60 MIGRANT WOMEN IMPACT BLOCK
========================================== */

.project-impact-number {
    position: relative;

    min-height: 245px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 30px;

    border-radius: 24px;

    color: #ffffff;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            var(--purple-dark),
            var(--purple),
            var(--pink)
        );

    border-bottom:
        7px solid var(--yellow);

    box-shadow:
        0 16px 35px
        rgba(112, 34, 131, 0.22);
}


.project-impact-number::after {
    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    border-radius: 50%;

    right: -55px;
    bottom: -65px;

    background:
        rgba(255, 255, 255, 0.10);
}


.project-impact-number strong {
    position: relative;
    z-index: 2;

    display: block;

    font-size: 78px;

    line-height: 1;

    color: #ffffff;
}


.project-impact-number span {
    position: relative;
    z-index: 2;

    margin-top: 10px;

    color: var(--yellow);

    font-size: 18px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* ==========================================
   PROJECT FACTS
========================================== */

.project-facts {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 1px;

    background: #e7e7e7;

    border-top:
        1px solid #eeeeee;

    border-bottom:
        1px solid #eeeeee;
}


.project-facts > div {
    background: #ffffff;

    padding: 26px 20px;

    text-align: center;
}


.project-facts span {
    display: block;

    font-size: 28px;

    margin-bottom: 8px;
}


.project-facts strong {
    display: block;

    color: var(--purple-dark);

    font-size: 14px;

    margin-bottom: 5px;
}


.project-facts p {
    color: var(--grey);

    font-size: 14px;

    margin: 0;
}


/* Give the WIDE+ fact a different accent */

.project-facts > div:nth-child(4) {
    background:
        linear-gradient(
            180deg,
            #ffffff,
            var(--light-purple)
        );
}
/* ==========================================
   WIDE+ PROJECT PARTNER
========================================== */

.wide-partner-fact {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;
}


.wide-partner-logo {
    display: block;

    width: 135px;
    max-width: 85%;

    height: auto;

    object-fit: contain;

    margin: 10px auto 8px;
}


.wide-partner-fact strong {
    color: var(--purple-dark);
}


.wide-partner-fact p {
    color: var(--grey);

    font-size: 13px;
}

/* ==========================================
   FEATURED PROJECT DESCRIPTION
========================================== */

.featured-project-body {
    padding: 45px 50px 50px;
}


.featured-project-body h4 {
    color: var(--blue-dark);

    font-size: 25px;

    margin-bottom: 18px;
}


.featured-project-body p {
    max-width: 950px;

    color: var(--grey);

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 16px;
}


/* ==========================================
   PROJECT ACTIVITIES
========================================== */

.project-activities-section {
    background: #ffffff;
}


.project-activities-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


.project-activity-card {
    padding: 34px 28px;

    min-height: 270px;

    border-radius: 20px;

    background: #ffffff;

    border-top:
        5px solid var(--purple);

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.07);

    transition: 0.35s;
}


.project-activity-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 40px
        rgba(0, 0, 0, 0.11);
}


.project-activity-icon {
    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 18px;

    background: var(--light-purple);

    font-size: 29px;
}


.project-activity-card h3 {
    color: var(--purple-dark);

    font-size: 21px;

    margin-bottom: 12px;
}


.project-activity-card p {
    color: var(--grey);

    font-size: 15px;

    line-height: 1.75;
}


/* Different WEINSE colors */

.project-activity-card:nth-child(2) {
    border-top-color: var(--blue);
}

.project-activity-card:nth-child(2)
.project-activity-icon {
    background: var(--light-blue);
}


.project-activity-card:nth-child(3) {
    border-top-color: var(--green);
}

.project-activity-card:nth-child(3)
.project-activity-icon {
    background: var(--light-green);
}


.project-activity-card:nth-child(4) {
    border-top-color: var(--orange);
}

.project-activity-card:nth-child(4)
.project-activity-icon {
    background: var(--light-orange);
}


.project-activity-card:nth-child(5) {
    border-top-color: var(--pink);
}

.project-activity-card:nth-child(5)
.project-activity-icon {
    background: var(--light-pink);
}


.project-activity-card:nth-child(6) {
    border-top-color: var(--gold);
}

.project-activity-card:nth-child(6)
.project-activity-icon {
    background: #fff8dc;
}


/* ==========================================
   EXPECTED RESULTS
========================================== */

.project-results-section {
    background:
        linear-gradient(
            120deg,
            #eef7ef,
            #f5f9f1,
            #ffffff
        );
}


.project-results-grid {
    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 60px;

    align-items: center;
}


.project-results-grid h2 {
    color: var(--green-dark);

    font-size: 40px;

    margin-bottom: 18px;
}


.project-results-grid p {
    color: var(--grey);

    font-size: 17px;

    line-height: 1.8;
}


.project-results-list {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;
}


.project-results-list div {
    padding: 18px;

    border-radius: 14px;

    background: #ffffff;

    color: var(--green-dark);

    font-weight: 700;

    line-height: 1.5;

    box-shadow:
        0 7px 20px
        rgba(50, 110, 60, 0.08);
}


/* ==========================================
   OTHER PROJECTS
========================================== */

.other-projects-section {
    background: #ffffff;
}


.other-projects-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 30px;
}


.other-project-card {
    position: relative;

    padding: 40px 35px;

    min-height: 390px;

    border-radius: 24px;

    background: #ffffff;

    box-shadow:
        0 14px 35px
        rgba(0, 0, 0, 0.08);

    overflow: hidden;
}


.other-project-number {
    position: absolute;

    right: 25px;
    top: 20px;

    font-size: 58px;

    font-weight: 800;

    opacity: 0.08;
}


.other-project-icon {
    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    font-size: 31px;

    margin-bottom: 20px;
}


.other-project-category {
    display: inline-block;

    padding: 6px 12px;

    margin-bottom: 14px;

    border-radius: 18px;

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;
}


.other-project-card h3 {
    font-size: 25px;

    line-height: 1.3;

    margin-bottom: 17px;
}


.other-project-card p {
    color: var(--grey);

    font-size: 15px;

    line-height: 1.75;

    margin-bottom: 14px;
}


/* Africa project */

.project-africa {
    border-top:
        6px solid var(--green);
}


.project-africa .other-project-icon {
    background: var(--light-green);
}


.project-africa .other-project-category {
    background: var(--light-green);

    color: var(--green-dark);
}


.project-africa h3 {
    color: var(--green-dark);
}


/* Youth project */

.project-youth {
    border-top:
        6px solid var(--blue);
}


.project-youth .other-project-icon {
    background: var(--light-blue);
}


.project-youth .other-project-category {
    background: var(--light-blue);

    color: var(--blue-dark);
}


.project-youth h3 {
    color: var(--blue-dark);
}


/* ==========================================
   PROJECT CTA
========================================== */

.project-cta {
    padding: 90px 20px;

    text-align: center;

    color: #ffffff;

    background:
        linear-gradient(
            120deg,
            var(--purple-dark),
            var(--purple),
            var(--blue),
            var(--green-dark)
        );
}


.project-cta .section-label {
    color: var(--yellow);
}


.project-cta h2 {
    color: #ffffff;

    font-size: 40px;

    margin-bottom: 16px;
}


.project-cta p {
    max-width: 750px;

    margin:
        0 auto 28px;

    color:
        rgba(255, 255, 255, 0.93);

    font-size: 17px;

    line-height: 1.8;
}
/* ==========================================
   TABLET
========================================== */

@media (max-width: 1000px) {

    .main-nav > ul {
        gap: 0;
    }

    .main-nav a {
        font-size: 13px;
        padding: 12px 7px;
    }

    .hero h1 {
        font-size: 58px;
    }

    .program-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .program-card:nth-child(4),
    .program-card:nth-child(5) {
        grid-column: auto;
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
       .blog-coming-soon {
        min-height: 560px;
        padding: 75px 20px;
    }

    .coming-soon-content h1 {
        font-size: 46px;
    }

    .coming-soon-buttons {
        flex-direction: column;
    }

    .coming-soon-buttons .btn {
        width: 100%;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 800px) {

    .nav-container {
        min-height: 75px;
    }

    .site-logo {
        width: 120px;
    }


    /* Hamburger */

    .menu-toggle {
        display: block;
    }


    /* Mobile navigation */

    .main-nav {
        position: absolute;

        top: 75px;
        left: 0;

        width: 100%;

        background: #ffffff;

        box-shadow:
            0 10px 25px
            rgba(0, 0, 0, 0.1);

        display: none;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav > ul {
        display: block;

        padding: 15px 20px;
    }

    .main-nav > ul > li {
        width: 100%;
    }

    .main-nav a {
        padding: 12px 10px;

        font-size: 15px;
    }

    .main-nav .membership-btn {
        display: inline-block;

        margin:
            8px 0 5px;
    }


    /* Mobile dropdown */

    .dropdown-menu {
        position: static;

        width: 100%;

        opacity: 1;
        visibility: visible;

        transform: none;

        box-shadow: none;

        display: none;

        padding-left: 15px;

        background: #faf7fb;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }


    /* Hero */

    .hero {
        min-height: 600px;

        text-align: center;
    }

    .hero-content {
        padding:
            80px 0;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 17px;

        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }


    /* Sections */

    .section {
        padding: 70px 0;
    }

    .section-heading h2,
    .about-text h2,
    .event-content h2 {
        font-size: 34px;
    }


    /* About */

    .two-columns {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    /* Programs */

    .program-grid {
        grid-template-columns: 1fr;
    }


    /* Event */

    .event-box {
        grid-template-columns: 1fr;

        padding: 30px;

        gap: 30px;
    }

    .event-date {
        min-height: 180px;
    }


    /* Membership */

    .membership-cta h2 {
        font-size: 34px;
    }


    /* Footer */

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }
    /* Footer */

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }
    .program-overview-grid {
        grid-template-columns: 1fr;
    }

    .programs-intro h2 {
        font-size: 34px;
       .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .mission-card,
    .vision-card {
        min-height: auto;
        padding: 38px 28px;
    }
           /* ABOUT VALUES - MOBILE */

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        min-height: auto;
        padding: 30px 26px;
    }
           /* NEWS & EVENTS - MOBILE */

    .news-page-hero {
        min-height: 400px;
        text-align: center;
    }

    .news-page-hero h1 {
        font-size: 42px;
    }

    .featured-event-card {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
    }

    .featured-event-date {
        min-height: 190px;
    }

    .event-info-list {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }
           /* EVENT FLYER - MOBILE */

    .event-visual-section {
        padding: 40px 0 10px;
    }

    .event-visual {
        padding: 7px;
        border-radius: 16px;
    }

    .event-visual img {
        border-radius: 11px;
    
    }
           /* ==========================================
       PUBLICATIONS PAGE - MOBILE
    ========================================== */

    .publication-page-hero {
        min-height: 400px;
        text-align: center;
    }

    .publication-page-hero h1 {
        font-size: 42px;
    }

    .publication-intro h2 {
        font-size: 34px;
    }

    .publications-grid {
        grid-template-columns: 1fr;
    }

    .publication-card {
        min-height: auto;
        padding: 32px 26px;
    }

    .publication-cta h2 {
        font-size: 34px;
    }
          /* ==========================================
       MEMBERSHIP PAGE - MOBILE
    ========================================== */

    .membership-page-hero {
        min-height: 400px;
        text-align: center;
    }

    .membership-page-hero h1 {
        font-size: 42px;
    }

    .membership-intro-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .membership-intro-grid h2 {
        font-size: 34px;
    }

    .membership-benefits-grid {
        grid-template-columns: 1fr;
    }

    .membership-form {
        padding: 28px 22px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .membership-price-card {
        padding: 40px 28px;
    } 
           /* ==========================================
       PROJECTS PAGE - MOBILE
    ========================================== */

    .projects-page-hero {
        min-height: 410px;
        text-align: center;
    }

    .projects-page-hero h1 {
        font-size: 42px;
    }

    .projects-intro h2 {
        font-size: 34px;
    }


    .featured-project-top {
        grid-template-columns: 1fr;

        padding: 32px 26px;

        gap: 30px;
    }


    .featured-project-top h3 {
        font-size: 28px;
    }


    .project-impact-number {
        min-height: 210px;
    }


    .project-impact-number strong {
        font-size: 68px;
    }


    .project-facts {
        grid-template-columns: 1fr 1fr;
    }


    .featured-project-body {
        padding: 32px 26px;
    }


    .project-activities-grid {
        grid-template-columns: 1fr;
    }


    .project-activity-card {
        min-height: auto;
    }


    .project-results-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .project-results-grid h2 {
        font-size: 34px;
    }


    .project-results-list {
        grid-template-columns: 1fr;
    }


    .other-projects-grid {
        grid-template-columns: 1fr;
    }


    .other-project-card {
        min-height: auto;

        padding: 32px 26px;
    }


    .project-cta h2 {
        font-size: 34px;
    }
    }
   
   
   

    /* ==========================================
       PROGRAM PAGES - MOBILE
    ========================================== */

    .program-page-hero {
        min-height: 380px;
        text-align: center;
    }

    .program-page-hero h1 {
        font-size: 42px;
    }

    .program-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .program-details-grid {
        grid-template-columns: 1fr;
    }

    .program-audience {
        grid-template-columns: 1fr;
        gap: 35px;
    }

       .program-content h2,
    .program-audience h2 {
        font-size: 34px;
    }


    /* ==========================================
       ABOUT PAGE - MOBILE
    ========================================== */

    .about-page-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-page-grid h2 {
        font-size: 34px;
    }

    .about-highlight-box {
        padding: 38px 28px;
    }

    .about-page-hero {
        min-height: 400px;
        text-align: center;
    }

    .about-page-hero h1 {
        font-size: 42px;
    }


}  /* closes @media (max-width: 800px) */



/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .container {
        width: 92%;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-small {
        font-size: 12px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .program-card {
        padding: 28px;
    }

    .event-box {
        padding: 22px;
    }

}
