/* =========================================================
   LOUIS CARTER FOUNDATION
   ABOUT US PAGE
   COMPLETE REDESIGN
========================================================= */


/* =========================================================
   PAGE RESET
========================================================= */

.about-page {
    background: #ffffff;
    color: #172033;
}

.about-page main {
    width: 100%;
    overflow: hidden;
}

.about-page .container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   ABOUT HERO
========================================================= */

.about-hero {
    position: relative;

    min-height: 720px;

    display: flex;
    align-items: center;

    background-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.68) 0%,
            rgba(0, 0, 0, 0.48) 48%,
            rgba(0, 0, 0, 0.34) 100%
        ),
        url("../images/about/about-hero.jpg");

    background-size: cover;
    background-position: center center;

    isolation: isolate;
}


/* Hero overlay */

.about-hero::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.15) 0%,
            transparent 45%,
            rgba(0, 0, 0, 0.38) 100%
        );

    z-index: -1;
}


/* Hero content */

.about-hero-content {
    position: relative;

    z-index: 2;

    max-width: 850px;

    padding-top: 100px;

    color: #ffffff;
}


/* Small label */

.about-hero-label {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 24px;

    padding: 10px 20px;

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.94);

    color: #f5b900;

    font-family: "Inter", sans-serif;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


/* Heading */

.about-hero h1 {
    max-width: 850px;

    margin: 0;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: clamp(52px, 7vw, 92px);

    font-weight: 800;

    line-height: 1.02;

    letter-spacing: -2px;

    text-shadow:
        0 5px 25px rgba(0, 0, 0, 0.32);
}


/* Description */

.about-hero-description {
    max-width: 650px;

    margin: 28px 0 0;

    color: rgba(255, 255, 255, 0.92);

    font-family: "Inter", sans-serif;

    font-size: 18px;

    line-height: 1.8;
}


/* Breadcrumb */

.about-breadcrumb {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;

    font-family: "Inter", sans-serif;

    font-size: 14px;

    font-weight: 600;
}

.about-breadcrumb a {
    color: #ffffff;

    text-decoration: none;

    transition: color 0.25s ease;
}

.about-breadcrumb a:hover {
    color: #f5b900;
}

.about-breadcrumb i {
    color: #f5b900;

    font-size: 11px;
}

.about-breadcrumb span {
    color: #f5b900;
}


/* =========================================================
   INTRO SECTION
========================================================= */

.about-intro-section {
    padding: 110px 0;
    background: #ffffff;
}

.about-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    align-items: center;

    gap: 90px;
}


/* Image */

.about-intro-image {
    position: relative;

    min-width: 0;
}

.about-intro-image img {
    display: block;

    width: 100%;

    height: 560px;

    object-fit: cover;

    border-radius: 20px;

    box-shadow:
        0 25px 60px rgba(16, 44, 78, 0.16);
}


/* Image badge */

.about-image-badge {
    position: absolute;

    right: -25px;

    bottom: 30px;

    display: flex;

    flex-direction: column;

    padding: 20px 25px;

    min-width: 190px;

    border-radius: 14px;

    background: #0b4495;

    color: #ffffff;

    box-shadow:
        0 15px 35px rgba(11, 68, 149, 0.28);
}

.about-image-badge strong {
    font-family: "Poppins", sans-serif;

    font-size: 25px;

    font-weight: 800;
}

.about-image-badge span {
    margin-top: 3px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 12px;

    font-weight: 600;
}


/* Content */

.about-intro-content {
    min-width: 0;
}

.about-section-label {
    display: inline-block;

    margin-bottom: 15px;

    color: #f5b900;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}

.about-intro-content h2 {
    margin: 0 0 25px;

    color: #172033;

    font-family: "Poppins", sans-serif;

    font-size: clamp(34px, 4vw, 52px);

    font-weight: 800;

    line-height: 1.15;
}

.about-intro-content p {
    margin: 0 0 17px;

    color: #687589;

    font-size: 16px;

    line-height: 1.85;
}


/* Button */

.about-primary-btn {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 14px;

    padding: 15px 25px;

    border-radius: 8px;

    background: #0b4495;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.about-primary-btn:hover {
    background: #083774;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(11, 68, 149, 0.22);
}


/* =========================================================
   PURPOSE SECTION
========================================================= */

.about-purpose-section {
    padding: 105px 0;

    background: #f5f8fc;
}


/* Section heading */

.about-section-heading {
    max-width: 720px;

    margin: 0 auto 55px;

    text-align: center;
}

.about-section-heading .about-section-label {
    margin-bottom: 12px;
}

.about-section-heading h2 {
    margin: 0;

    color: #172033;

    font-family: "Poppins", sans-serif;

    font-size: clamp(34px, 4vw, 48px);

    font-weight: 800;

    line-height: 1.15;
}

.about-section-heading p {
    margin: 18px auto 0;

    color: #718096;

    font-size: 16px;

    line-height: 1.8;
}


/* Cards */

.about-purpose-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;
}

.about-purpose-card {
    padding: 38px 32px;

    border: 1px solid #e4eaf2;

    border-radius: 16px;

    background: #ffffff;

    text-align: center;

    box-shadow:
        0 10px 35px rgba(17, 47, 80, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.about-purpose-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 45px rgba(17, 47, 80, 0.11);
}


/* Icon */

.about-purpose-icon {
    width: 68px;
    height: 68px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 23px;

    border-radius: 16px;

    background: #edf4ff;

    color: #0b4495;

    font-size: 25px;
}

.about-purpose-card:nth-child(2)
.about-purpose-icon {
    background: #fff8df;

    color: #d69f00;
}

.about-purpose-card:nth-child(3)
.about-purpose-icon {
    background: #edf9f4;

    color: #198754;
}


.about-purpose-card h3 {
    margin: 0 0 13px;

    color: #172033;

    font-family: "Poppins", sans-serif;

    font-size: 21px;

    font-weight: 700;
}

.about-purpose-card p {
    margin: 0;

    color: #718096;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   IMPACT SECTION
========================================================= */

.about-impact-section {
    padding: 115px 0;

    background: #ffffff;
}

.about-impact-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.9fr);

    gap: 80px;

    align-items: center;
}

.about-impact-content {
    min-width: 0;
}

.about-impact-content h2 {
    margin: 0 0 22px;

    color: #172033;

    font-family: "Poppins", sans-serif;

    font-size: clamp(34px, 4vw, 50px);

    font-weight: 800;

    line-height: 1.15;
}

.about-impact-content > p {
    margin: 0 0 17px;

    color: #718096;

    font-size: 16px;

    line-height: 1.85;
}


/* Impact items */

.about-impact-list {
    display: grid;

    gap: 25px;

    margin-top: 35px;
}

.about-impact-item {
    display: grid;

    grid-template-columns: 52px 1fr;

    gap: 17px;

    align-items: start;
}

.about-impact-icon {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #edf4ff;

    color: #0b4495;

    font-size: 18px;
}

.about-impact-item h3 {
    margin: 0 0 6px;

    color: #172033;

    font-family: "Poppins", sans-serif;

    font-size: 17px;

    font-weight: 700;
}

.about-impact-item p {
    margin: 0;

    color: #718096;

    font-size: 14px;

    line-height: 1.7;
}


/* Impact visual */

.about-impact-visual {
    position: relative;

    min-width: 0;

    padding: 15px 0 30px 15px;
}

.about-impact-image {
    overflow: hidden;

    border-radius: 20px;

    box-shadow:
        0 25px 55px rgba(16, 44, 78, 0.16);
}

.about-impact-image img {
    display: block;

    width: 100%;

    height: 520px;

    object-fit: cover;
}


/* Highlight */

.about-impact-highlight {
    position: absolute;

    left: -10px;

    bottom: 0;

    display: flex;

    align-items: center;

    gap: 15px;

    max-width: 310px;

    padding: 18px 22px;

    border-radius: 14px;

    background: #0b4495;

    color: #ffffff;

    box-shadow:
        0 15px 35px rgba(11, 68, 149, 0.25);
}

.about-impact-highlight > i {
    font-size: 25px;

    color: #f5b900;
}

.about-impact-highlight strong {
    display: block;

    font-family: "Poppins", sans-serif;

    font-size: 16px;
}

.about-impact-highlight span {
    display: block;

    margin-top: 2px;

    color: rgba(255, 255, 255, 0.76);

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================================
   STORY SECTION
========================================================= */

.about-story-section {
    padding: 110px 0;

    background: #f5f8fc;
}

.about-story-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 80px;

    align-items: center;
}


/* Story image */

.about-story-image {
    overflow: hidden;

    border-radius: 20px;

    box-shadow:
        0 25px 55px rgba(16, 44, 78, 0.14);
}

.about-story-image img {
    display: block;

    width: 100%;

    height: 520px;

    object-fit: cover;
}


/* Story timeline */

.about-story-content {
    position: relative;

    padding-left: 40px;
}

.about-story-line {
    position: absolute;

    top: 5px;
    bottom: 5px;
    left: 10px;

    width: 2px;

    background: #dbe4f0;
}

.about-story-item {
    position: relative;

    display: grid;

    grid-template-columns: 95px 1fr;

    gap: 25px;

    margin-bottom: 42px;
}

.about-story-item:last-child {
    margin-bottom: 0;
}


/* Year */

.about-story-year {
    position: relative;

    color: #0b4495;

    font-family: "Poppins", sans-serif;

    font-size: 17px;

    font-weight: 800;
}


/* Timeline dot */

.about-story-year::before {
    content: "";

    position: absolute;

    top: 5px;

    left: -40px;

    width: 12px;
    height: 12px;

    border: 3px solid #ffffff;

    border-radius: 50%;

    background: #f5b900;

    box-shadow:
        0 0 0 2px #f5b900;
}


/* Story text */

.about-story-text h3 {
    margin: 0 0 8px;

    color: #172033;

    font-family: "Poppins", sans-serif;

    font-size: 21px;

    font-weight: 700;
}

.about-story-text p {
    margin: 0;

    color: #718096;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   CTA
========================================================= */

.about-cta-section {
    padding: 95px 0;

    background:
        linear-gradient(
            135deg,
            #062f6b 0%,
            #0b4495 55%,
            #123f78 100%
        );
}

.about-cta-wrapper {
    max-width: 800px;

    margin: 0 auto;

    text-align: center;

    color: #ffffff;
}

.about-cta-wrapper .about-section-label {
    color: #f5b900;
}

.about-cta-wrapper h2 {
    margin: 0;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: clamp(34px, 4vw, 50px);

    font-weight: 800;

    line-height: 1.15;
}

.about-cta-wrapper p {
    max-width: 650px;

    margin: 20px auto 0;

    color: rgba(255, 255, 255, 0.82);

    font-size: 16px;

    line-height: 1.8;
}


/* CTA buttons */

.about-cta-buttons {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 30px;
}

.about-cta-buttons a {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 50px;

    padding: 0 25px;

    border-radius: 8px;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.about-cta-primary {
    background: #f5b900;

    color: #111111;
}

.about-cta-primary:hover {
    background: #ffca28;

    color: #111111;

    transform: translateY(-2px);
}

.about-cta-secondary {
    border: 1px solid rgba(255,255,255,0.55);

    background: transparent;

    color: #ffffff;
}

.about-cta-secondary:hover {
    background: #ffffff;

    color: #0b4495;

    transform: translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .about-hero {
        min-height: 620px;

        background-position: center;
    }

    .about-hero-content {
        padding-top: 90px;
    }

    .about-intro-grid,
    .about-impact-grid,
    .about-story-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .about-intro-image {
        max-width: 700px;

        margin: 0 auto;
    }

    .about-impact-visual {
        max-width: 700px;

        width: 100%;

        margin: 0 auto;
    }

    .about-story-image {
        max-width: 700px;

        margin: 0 auto;
    }

    .about-purpose-grid {
        grid-template-columns: 1fr;

        max-width: 650px;

        margin: 0 auto;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .about-page .container {
        width: min(100% - 30px, 1180px);
    }


    /* Hero */

    .about-hero {
        min-height: 570px;

        background-position: 58% center;
    }

    .about-hero-content {
        padding-top: 80px;

        text-align: center;
    }

    .about-hero-label {
        margin-bottom: 18px;

        padding: 8px 15px;

        font-size: 11px;

        letter-spacing: 2px;
    }

    .about-hero h1 {
        font-size: 46px;

        letter-spacing: -1px;
    }

    .about-hero-description {
        margin: 20px auto 0;

        font-size: 14px;

        line-height: 1.7;
    }

    .about-breadcrumb {
        justify-content: center;

        margin-top: 22px;

        font-size: 13px;
    }


    /* Sections */

    .about-intro-section,
    .about-purpose-section,
    .about-impact-section,
    .about-story-section {
        padding: 75px 0;
    }


    /* Intro image */

    .about-intro-image img {
        height: 400px;

        border-radius: 15px;
    }

    .about-image-badge {
        right: 15px;

        bottom: 15px;

        min-width: 160px;

        padding: 15px 18px;
    }

    .about-image-badge strong {
        font-size: 21px;
    }


    /* Headings */

    .about-intro-content h2,
    .about-impact-content h2 {
        font-size: 34px;
    }

    .about-section-heading h2,
    .about-cta-wrapper h2 {
        font-size: 33px;
    }


    /* Impact */

    .about-impact-image img {
        height: 390px;
    }

    .about-impact-visual {
        padding-left: 0;
    }

    .about-impact-highlight {
        position: relative;

        left: auto;
        bottom: auto;

        max-width: none;

        margin: -20px 15px 0;
    }


    /* Story */

    .about-story-image img {
        height: 380px;
    }

    .about-story-content {
        padding-left: 30px;
    }

    .about-story-line {
        left: 5px;
    }

    .about-story-item {
        grid-template-columns: 1fr;

        gap: 5px;

        margin-bottom: 32px;
    }

    .about-story-year::before {
        left: -30px;
    }


    /* CTA */

    .about-cta-section {
        padding: 75px 0;
    }

    .about-cta-buttons {
        flex-direction: column;
    }

    .about-cta-buttons a {
        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .about-hero {
        min-height: 520px;
    }

    .about-hero h1 {
        font-size: 40px;
    }

    .about-hero-description {
        font-size: 13px;
    }

    .about-intro-image img {
        height: 340px;
    }

    .about-impact-image img {
        height: 330px;
    }

    .about-story-image img {
        height: 320px;
    }

}
/* =========================================================
   INNER PAGE HERO
   LOUIS CARTER FOUNDATION
   Controls HERO section only
========================================================= */

.inner-page-hero {
    position: relative;
    width: 100%;
    min-height: 470px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            135deg,
            #063b82 0%,
            #0755a6 55%,
            #0a67c7 100%
        );

    overflow: hidden;
}


/* =========================================================
   SUBTLE BACKGROUND EFFECT
========================================================= */

.inner-page-hero::before {
    content: "";
    position: absolute;

    width: 520px;
    height: 520px;

    right: -180px;
    top: -250px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.06);
}


.inner-page-hero::after {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    left: -220px;
    bottom: -260px;

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.08);
}


/* =========================================================
   BLACK / DARK OVERLAY
========================================================= */

.inner-page-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.20),
            rgba(0, 0, 0, 0.05)
        );

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.inner-page-hero .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.inner-page-hero-content {
    max-width: 820px;

    padding-top: 155px;
    padding-bottom: 55px;
}


/* =========================================================
   HERO LABEL
========================================================= */

.inner-page-tag {
    display: inline-flex;
    align-items: center;

    padding: 10px 22px;

    margin-bottom: 24px;

    border-radius: 50px;

    background: #ffffff;

    color: #f5b400;

    font-family: "Poppins", sans-serif;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;

    line-height: 1;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   HERO TITLE
========================================================= */

.inner-page-hero h1 {
    margin: 0 0 20px;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: clamp(48px, 6vw, 78px);

    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -1.5px;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.inner-page-hero p {
    max-width: 760px;

    margin: 0 0 28px;

    color: rgba(255, 255, 255, 0.92);

    font-family: "Inter", sans-serif;

    font-size: 18px;
    font-weight: 400;

    line-height: 1.7;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.inner-page-breadcrumb {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    font-family: "Inter", sans-serif;

    font-size: 14px;
    font-weight: 600;
}


.inner-page-breadcrumb a {
    color: #ffffff;

    text-decoration: none;

    transition: color 0.25s ease;
}


.inner-page-breadcrumb a:hover {
    color: #f5b400;
}


.inner-page-breadcrumb i {
    color: #f5b400;

    font-size: 10px;
}


.inner-page-breadcrumb span {
    color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 991px) {

    .inner-page-hero {
        min-height: 430px;
    }

    .inner-page-hero-content {
        max-width: 720px;

        padding-top: 45px;
        padding-bottom: 45px;
    }

    .inner-page-hero h1 {
        font-size: 58px;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767px) {

    .inner-page-hero {
        min-height: 380px;
    }

    .inner-page-hero-content {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .inner-page-tag {
        padding: 9px 17px;

        margin-bottom: 18px;

        font-size: 11px;

        letter-spacing: 2px;
    }

    .inner-page-hero h1 {
        margin-bottom: 15px;

        font-size: 45px;

        letter-spacing: -1px;
    }

    .inner-page-hero p {
        font-size: 15px;

        line-height: 1.65;

        margin-bottom: 22px;
    }

    .inner-page-breadcrumb {
        font-size: 13px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .inner-page-hero {
        min-height: 350px;
    }

    .inner-page-hero-content {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .inner-page-hero h1 {
        font-size: 39px;
    }

    .inner-page-hero p {
        font-size: 14px;
    }

}