@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* =============== */
/* GLOBAL THEME    */
/* =============== */

:root {
    --bg-hero: #043d40;
    --bg-page: #F5F5F5;
    --accent: #D68A3C;
    --accent-hover: #E19745;
    --text-dark-green: #043d40;
    --text-dark: #1A1A1A;
    --text-light: #F5F5F5;
    --text-muted: #5A5A5A;

    --radius-pill: 999px;
    --radius-card: 24px;
    --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.06);
    
    --font-main: "Inter", sans-serif;

    --space-section: 48px;       /* default vertical spacing */
    --space-section-large: 72px; /* hero + special sections */
}

/* =============== */
/* RESETS & BASE   */
/* =============== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background: var(--bg-page);
    color: var(--text-dark);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

section {
    margin: 0;
    padding: var(--space-section) 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Headings & paragraphs inside sections */

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 16px;
}

p {
    margin: 0 0 16px;
}

section > *:last-child {
    margin-bottom: 0;
}

li {
    text-align: left;
}

/* ================= */
/* HEADER / NAV      */
/* ================= */

header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--bg-hero);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--text-light);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.03em;
    color: var(--text-light);
}

.logo img {
    max-height: 70px;
    width: auto;
}

.nav-title{
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: var(--accent);
    margin: auto;
}

.nav-title h2 {
    font-size: 1.4em;
    font-weight: normal;
}

.nav-links {
    display: flex;
    gap: 12px;
    font-size: 18px;
}

.nav-link {
    padding: 8px 18px;
    border-radius: 5px;
    opacity: 0.9;
    color: var(--text-light);
    transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.nav-link.active {
    background: var(--accent);
    color: var(--bg-hero);
    font-weight: 600;
    opacity: 1;
}

.nav-link:hover {
    background: var(--accent);
    opacity: 0.8;
}

/* mobile: simple fallback */
@media (max-width: 800px) {
    .nav-links {
        display: none;
    }
}

/* =============== */
/* GLOBAL HERO     */
/* =============== */

.hero {
    background: var(--bg-hero);
    color: var(--text-light);
    padding: var(--space-section-large) 0;
}

.hero > .container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px; /* consistent hero band height */
}

.hero-inner {
    max-width: 760px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
}

.hero-badge {
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.9;
}

.hero-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.25;
    padding: 1.5em;
}

.hero-text {
    font-size: 18px;
    max-width: 640px;
    opacity: 0.92;
    margin: 0 auto;
}

.hero-button {
    margin-top: 6px;
    padding: 14px 20px;
    background: var(--accent);
    color: #043d40;
    /* border-radius: var(--radius-pill); */
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: background 0.2s ease, transform 0.15s ease;
}

.hero-button:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.hero-button-dark {
    margin-top: 6px;
    padding: 14px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    background: var(--text-dark-green);
    color: var(--accent);
    display: grid;
    justify-self: center;
} 

@media (max-width: 768px) {
    .hero {
        padding: 56px 0;
    }

    .hero > .container {
        min-height: 260px;
    }

    .hero-title {
        font-size: 26px;
    }
}

/* Page-specific hero tweaks (all share same shell) */

.partnerships-hero .hero-title,
.events-hero .hero-title,
.learning-hero .hero-title,
.mentorship-hero .hero-title {
    max-width: 720px;
    margin: 0 auto;
}

.partnerships-hero .hero-text,
.events-hero .hero-text,
.learning-hero .hero-text,
.mentorship-hero .hero-text {
    max-width: 640px;
    margin: 0 auto;
}

/* ===================== */
/* SOCIAL MEDIA BAR      */
/* ===================== */

.social-media-bar {
    padding: var(--space-section) 0;
}

/* ===================== */
/* SOCIAL MEDIA BAR      */
/* ===================== */

/* SOCIAL MEDIA BAR */
.social-media-bar {
    padding: var(--space-section) 100px;
}

.social-media-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
}

.social-media-item img {
    width: 150px;   /* adjust if needed */
    height: auto;
    margin: 0 auto 10px;
}

.social-media-number {
    font-family: "Fira Code", monospace; 
    font-size: 24px;
    font-weight: 700;
    color: #043D40;
    margin-top: 4px;
}

/*Responsive*/

@media (max-width: 700px) {
    .social-media-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 450px) {
    .social-media-grid {
        grid-template-columns: 1fr;
    }
}


/* ===================== */
/* WHY JOIN SECTION      */
/* ===================== */

.why-join {
    background: var(--bg-page);
}

.why-join-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 32px;
    color: var(--text-dark-green);
    line-height: 1.2;
}

.why-join-header h1 {
    font-weight: 600;
    margin-bottom: 20px;
    color: #043D40;
}

.why-join-header-light h1 {
    text-align: center;
    max-width: 640px;
    font-weight: 600;
    margin: 0 auto 32px;
    color: #f5f5f5;
    line-height: 1.2;
}

.why-join-header p {
    color: #043d40;
    margin: 0;
    text-align: left;
    padding: 20px;
}

.why-join-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    justify-items: center;
}

.why-join-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.why-join-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F5F5;
}

.why-join-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.why-join-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark-green);
}

/* ===================== */
/* PARTNERS SECTION      */
/* ===================== */




/* ===================== */
/* ABOUT SECTION         */
/* ===================== */

.about-section {
    background: #F5F5F5;
}

.about-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 28px;
}

.about-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-hero);
    display: inline-block;
    align-items: center;
    flex-shrink: 0;
    color: var(--accent);
    font-size: 40px;
}

.widget {
    width: 25%;
    height: auto;
    margin: auto;
}

.about-content h2 {
    padding-left: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark-green);
    margin-top: 20px;
    text-align: left;
}

.about-content p,
.about-content li {
    color: var(--text-dark-green);
    text-align: left;
}

.about-content ul {
    padding-left: 18px;
    margin: 0;
}

.partners-slider {
    overflow: hidden;
    width: 100%;
}

.partners-track {
    display: flex;
    transition: transform 0.5s ease;
}

.partner-logo {
    flex: 0 0 calc(100% / 3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    width: 50%;
    display: block;
}

/* ===================== */
/* CORE TEAM SECTION     */
/* ===================== */

.core-team-section {
    background: #F5F5F5;
}

.core-card {
    border: 2px solid var(--accent);
    border-radius: 24px;
    padding: 20px 24px;
    background: #F5f5f5;
    box-shadow: var(--shadow-soft);
    margin-bottom: 24px;
}

.core-card.main {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.core-photo-circle {
    width: 40%;
    margin: auto;
    height: 200px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.core-main-name h1 {
    color: var(--accent);
    margin-bottom: 4px;
    text-align: left;
}

.core-main-role h2 {
    font-weight: 600;
    color: var(--text-dark-green);
    margin-bottom: 6px;
    text-align: left;
    line-height: 1.2;
}

.core-main-list {
    color: #043D40;
    padding-left: 18px;
    margin: 0;
    text-align: left;
    line-height: 1.2;
}

.core-card.team-grid {
    text-align: center;
}

.core-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 32px;
    justify-items: center;
}

.core-mini-photo {
    width: 80%;
    height: auto;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #5A5A5A;
    margin: 0 auto 6px;
}

.core-member-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.2;
    margin-bottom: 5px;
}

.core-member-role {
    font-size: 13px;
    color: #043D40;
}

/* ===================== */
/* FOOTER                */
/* ===================== */

.footer {
    background: var(--bg-hero);
    color: #F5F5F5;
    padding: 32px 0 18px;
/*    font-size: 13px;*/
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-brand-text {
    max-width: 260px;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social a {
    position: static;
    font-weight: 600;
    padding: 4px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
}

.footer-links-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.footer-links-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer svg {
    width: 20px;
    height: 20px;
    display: block;
  }

.footer-links-list li a {
    display: block;
    padding: 2px 0;
    opacity: 0.9;
}

.footer-links-list li a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-bottom {
    border-top: 0.5px solid var(--text-light);
    margin-top: 18px;
    padding-top: 8px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 11px;
}

.heart {
    color: var(--accent);
}

/* ============================= */
/* PARTNERSHIPS PAGE SECTIONS    */
/* ============================= */

.partners-section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #043D40;
    margin-bottom: 24px;
}

.partners-why {
    background: #F5F5F5;
}

.partners-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 24px;
    margin-top: 24px;
}

.partners-why-card {
    background: var(--text-dark-green);
    border-radius: var(--radius-card);
    padding: 18px 16px;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--accent);
    font-size: 13px;
    color: var(--text-light);
}

.partners-why-card-light {
    background: var(--bg-page);
    border-radius: var(--radius-card);
    padding: 18px 16px;
    font-size: 13px;
    color: var(--text-dark-green);
}

.partners-why-icon {
    border-radius: 50%;
    background: var(--bg-hero);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
}

/* Partnerships banner CTA */

.partners-banner {
    margin-top: 16px;
    padding: 16px 20px 20px;
    border-radius: 18px;
    background: var(--bg-hero);
    color: var(--text-light);
    display: flex;
    border: 2px solid var(--accent);
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.partners-banner-text {
    font-size: 14px;
    line-height: 1.5;
}

.partners-banner-btn {
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    background: var(--accent);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.partners-banner-btn:hover {
    background: var(--accent-hover);
}

/* Partnership types */

.partnership-types {
    background: var(--bg-page);
}

.partnership-card {
    background: #FFFFFF;
    border-radius: 18px;
    border: 1px solid #E6E6E6;
    padding: 18px 22px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 16px;
}

.partnership-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #043D40;
    margin-bottom: 10px;
}

.partnership-card-content {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.6fr);
    gap: 32px;
    font-size: 13px;
    color: var(--text-muted);
}

.partnership-right-list {
    margin: 0;
    padding-left: 18px;
    list-style: disc;
}

/* Steps */

.partner-steps-section {
    background: #FFFFFF;
}

.partner-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 10px;
}

.partner-step {
    text-align: center;
    font-size: 13px;
}

.partner-step-icon {
    width: 86px;
    height: 86px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: var(--bg-hero);
    border: 3px solid #F2B071;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
}

.partner-step-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Final CTA */

.partners-final-cta {
    background: var(--bg-hero);
    color: var(--text-light);
}

.partners-final-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.partners-final-inner h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.partners-final-inner p {
    font-size: 14px;
    opacity: 0.95;
    margin-bottom: 14px;
}

/* ============================= */
/* EVENTS PAGE SECTIONS          */
/* ============================= */

.events-intro {
    background: var(--bg-page);
}

.events-chart-section {
    background: #F5F5F5;
    padding-top: 0;
}

.events-chart-title {
    font-size: 18px;
    font-weight: 600;
    color: #043D40;
    margin: 0 auto 10px;
    text-align: center;
}

.events-chart-placeholder {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

/* Stats */

.events-stats {
    background: var(--bg-page);
}

.events-stats-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.events-stat {
    text-align: center;
}

.events-stat-value {
    font-family: "Fira Code", sans-serif;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--bg-hero);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 6px;
}

.events-stat-label {
    font-size: 13px;
    color: #043D40;
}

/* CTA */

.events-cta {
    background: var(--bg-hero);
    color: #FFFFFF;
    text-align: center;
}

.events-cta-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
}

.events-cta-buttons-top {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.events-invite-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
}

.events-cta-buttons-bottom {
    display: flex;
    justify-content: center;
}

.events-cta-btn {
    padding: 8px 22px;
    border-radius: var(--radius-pill);
    background: var(--accent);
    border: none;
    font-size: 13px;
    font-weight: 600;
    color: #F5F5F5;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: background 0.2s ease, transform 0.15s ease;
}

.events-cta-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.no-events img {
    margin: auto;
    width: 30%;
    height: auto;
}

/* ============================= */
/* LEARNING PAGE SECTIONS        */
/* ============================= */

.learning-why {
    background: var(--bg-page);
}
.learning-benefits-grid {
    display: grid;
    grid-template-areas:
    "card-1 card-2"
    "card-3 card-4"
    "card-5 card-6";
    /*grid-template-columns: 1fr, 3fr;*/
    gap: 15px;
}

.learning-benefit-card {
    background: #F5F5F5;
    border-radius: 18px;
    border: 1px solid #043d40;
    box-shadow: var(--shadow-soft);
    padding: 16px 14px 14px;
    margin: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.learning-benefit-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: #043D40;
    margin-bottom: 6px;
}

.learning-paths {
    background: var(--bg-hero);
    color: #F5F5F5;
}

.learning-path-card {
    background: #F5F5F5;
    color: #043D40;
    border-radius: 18px;
    border: 1px solid #043D40;
    box-shadow: var(--shadow-soft);
    padding: 18px 20px;
    max-width: 760px;
    margin: 0 auto 18px;
}

.learning-path-text {
    color: var(--text-dark-green);
    margin-bottom: 12px;
}

.learning-path-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 24px;
    color: var(--text-dark-green);
    margin-bottom: 14px;
}

/* ============================= */
/* MENTORSHIP PAGE SECTIONS      */
/* ============================= */

.mentor-why {
    background: var(--bg-page);
}

.mentor-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.mentor-benefit-card {
    background: #F5F5F5;
    border-radius: 18px;
    border: 1px solid var(--text-dark-green);
    box-shadow: var(--shadow-soft);
    padding: 16px 14px 14px;
    font-size: 13px;
    color: var(--text-muted);
}

.mentor-benefit-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: #043D40;
    margin-bottom: 6px;
}

/* Program */

.mentor-program {
    background: var(--bg-hero);
    color: var(--text-light);
    text-align: left;
}

.mentor-steps-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    max-width: 1100px;
    margin: 20px auto;
    flex-wrap: wrap;
}

.mentor-step {
    max-width: 150px;

    margin: 0 auto;
    font-size: 13px;
    color: var(--bg-page);
}

.mentor-step-icon {
    display: flex;
    align-items: center;
    margin: 0 auto 10px;
    font-size: 26px;
}

.mentor-step-icon img {
    border: 2px solid var(--accent);
    border-radius: 18px;    
}

/* Expectations */

.mentor-expectations {
    background: var(--bg-page);
    text-align: center;
}

/*
.custom-bullets {
    list-style-image: url("images/check-mark.png");
}*/

.mentor-expectations-list {
    padding-bottom: 10px;
}

.mentor-expectations-list li {
    line-height: 1.5;
}

.mentor-expectations-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-image: url("images/check-mark.png");
    font-size: 13px;
}

/* ============================= */
/* RESPONSIVE OVERRIDES         */
/* ============================= */

@media (max-width: 900px) {
    .why-join-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-why-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .learning-benefits-grid,
    .mentor-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 800px) {
    .partner-logo {
        flex: 0 0 50%;
    }

    .core-card.main {
        flex-direction: column;
    }

    .core-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 700px) {
    .events-chart-placeholder {
        height: 180px;
    }

    .events-cta-title,
    .events-invite-title {
        padding: 0 8px;
    }

    .partnership-card-content {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 650px) {
    .learning-benefits-grid,
    .learning-path-meta,
    .learning-internship-meta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .why-join-grid,
    .core-team-grid,
    .partners-why-grid,
    .partner-steps-grid,
    .mentor-benefits-grid,
    .mentor-steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        gap: 20px;
    }

    .partner-logo {
        flex: 0 0 100%;
    }

    .about-item {
        flex-direction: column;
    }
}