/* =========================================================
   Responsive NGO Website
   ========================================================= */


/* =========================
   RESET
   ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: #26352f;
    background: #fff;
    line-height: 1.6;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}


/* =========================
   COLORS
   ========================= */

:root {
    --green: #087b5b;
    --green-dark: #04563f;
    --green-light: #e8f5ef;
    --orange: #f39a3f;
    --orange-dark: #df7920;
    --cream: #f8f5ed;
    --dark: #18352c;
    --text: #52615b;
    --white: #ffffff;
    --border: #e4e9e5;
}


/* =========================
   TOP BAR
   ========================= */

.top-bar {
    background: var(--dark);
    color: #dce9e3;
    font-size: 13px;
}

.top-bar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-links {
    display: flex;
    gap: 22px;
}

.top-links a:hover {
    color: #fff;
}


/* =========================
   HEADER
   ========================= */

.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #edf0ee;
}

.nav-container {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 53px;
    height: 53px;
    /* display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    font-size: 21px; */
    object-fit: contain;
    display: block;
}

.logo strong {
    display: block;
    font-family: "Playfair Display", serif;
    color: #d62828;
    font-size: 23px;
    line-height: 1;
}

.logo small {
    display: block;
    color: #d62828;
    font-size: 9px;
    letter-spacing: 3px;
    margin-top: 4px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu > a {
    color: #3e4e47;
    font-size: 14px;
    font-weight: 600;
}

.nav-menu > a:hover {
    color: var(--green);
}

.nav-donate {
    background: var(--orange);
    color: #fff !important;
    padding: 12px 21px;
    border-radius: 5px;
    transition: .25s;
}

.nav-donate:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}


/* Mobile menu */

#menu-toggle {
    display: none;
}

.menu-button {
    display: none;
    width: 32px;
    cursor: pointer;
}

.menu-button span {
    display: block;
    height: 3px;
    margin: 5px 0;
    border-radius: 5px;
    background: var(--green-dark);
}


/* =========================
   HERO
   ========================= */
.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 78px);
    min-height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background: #18352c;
}

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #18352c;
}

.hero-slideshow::before {
    content: "";

    position: absolute;
    inset: -30px;

    background-image: var(--slide-bg);
    background-size: cover;
    background-position: center;

    filter: blur(25px);

    transform: scale(1.1);

    opacity: .65;

    z-index: 0;
}


/* ---------------------------------------------------------
   Main photographs
   --------------------------------------------------------- */

.hero-slideshow img {
    position: absolute;
    inset: 0;

    width: 100% !important;
    height: 100% !important;

    /*
       IMPORTANT:
       contain = complete photograph is visible
    */
    object-fit: contain !important;
    object-position: center center;

    display: block;

    opacity: 0;
    visibility: hidden;

    transition: opacity 1s ease-in-out;

    z-index: 1;
}


/* Active photograph */

.hero-slideshow img.active {
    opacity: 1;
    visibility: visible;
}
/* Remove old hero content */
.hero-overlay,
.hero-content,
.hero-text,
.hero-card {
    display: none !important;
}

.eyebrow,
.section-label {
    display: inline-block;
    color: var(--orange);
    font-size: 12px;
    letter-spacing: 2.2px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(46px, 6vw, 76px);
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero h1 span,
.about h2 span,
.impact h2 span,
.donation-text h2 span,
.volunteer h2 span,
.contact h2 span {
    color: var(--orange);
}

.hero p {
    max-width: 570px;
    color: #d9e4df;
    font-size: 18px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 51px;
    padding: 0 25px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    border: 2px solid transparent;
    transition: .25s;
}

.btn-primary {
    background: var(--orange);
    color: #fff;
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: rgba(255,255,255,.7);
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--green-dark);
}

.hero-card {
    width: 330px;
    flex-shrink: 0;
    padding: 32px;
    background: rgba(255,255,255,.96);
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

.hero-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--green-light);
    color: var(--green);
    margin-bottom: 18px;
}

.hero-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 25px;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 12px;
}

.hero-card p {
    color: var(--text);
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-card a {
    color: var(--green);
    font-weight: 700;
    font-size: 14px;
}


/* =========================
   TRUST STRIP
   ========================= */

.trust-strip {
    background: var(--orange);
    color: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
    padding: 24px 15px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.25);
}

.trust-grid > div:last-child {
    border: none;
}

.trust-grid strong {
    display: block;
    font-size: 30px;
    line-height: 1;
    margin-bottom: 5px;
}

.trust-grid span {
    font-size: 12px;
    opacity: .95;
}


/* =========================
   GENERAL SECTIONS
   ========================= */

.section {
    padding: 100px 0;
}

.section h2 {
    font-family: "Playfair Display", serif;
    color: var(--dark);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.15;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    margin-bottom: 50px;
}

.section-heading > p {
    max-width: 480px;
    color: var(--text);
}


/* =========================
   ABOUT
   ========================= */

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.about-image {
    position: relative;
    padding-right: 25px;
    padding-bottom: 25px;
}

.about-image::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 65%;
    height: 65%;
    background: var(--green-light);
    z-index: -1;
}

.about-image img {
    height: 520px;
    object-fit: cover;
    border-radius: 5px;
}

.experience-box {
    position: absolute;
    left: -25px;
    bottom: 50px;
    background: var(--orange);
    color: white;
    padding: 22px 25px;
    display: flex;
    align-items: center;
    gap: 13px;
    border-radius: 4px;
}

.experience-box strong {
    font-family: "Playfair Display", serif;
    font-size: 42px;
}

.experience-box span {
    font-size: 12px;
    line-height: 1.35;
}

.about-content > p {
    color: var(--text);
    margin: 18px 0;
}

.check-list {
    margin: 28px 0;
}

.check-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 13px 0;
}

.check-list span {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
}

.check-list p {
    color: var(--dark);
    font-weight: 600;
}

.text-link {
    color: var(--green);
    font-size: 14px;
    font-weight: 700;
}


/* =========================
   PROGRAMMES
   ========================= */

.programmes {
    background: var(--cream);
}

.programme-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.programme-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    transition: .3s;
}

.programme-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 45px rgba(25, 63, 49, .12);
}

.programme-image {
    height: 220px;
    overflow: hidden;
}

.programme-image img {
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.programme-card:hover img {
    transform: scale(1.06);
}

.programme-content {
    position: relative;
    padding: 25px;
}

.number {
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
}

.programme-content h3 {
    font-family: "Playfair Display", serif;
    color: var(--dark);
    font-size: 25px;
    margin: 6px 0 10px;
}

.programme-content p {
    color: var(--text);
    font-size: 13px;
    margin-bottom: 20px;
}

.programme-content a {
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
}


/* =========================
   IMPACT
   ========================= */

.impact {
    padding: 100px 0;
    background:
        linear-gradient(rgba(4, 72, 52, .94), rgba(4, 72, 52, .94)),
        url("https://images.unsplash.com/photo-1532629345422-7515f3d16bb6?auto=format&fit=crop&w=1800&q=85")
        center/cover;
    color: white;
}

.impact-heading {
    max-width: 700px;
    margin-bottom: 60px;
}

.section-label.light {
    color: #ffb466;
}

.impact h2 {
    color: white;
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.1;
    margin-bottom: 20px;
}

.impact-heading p {
    color: #c9ded6;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,.2);
    border-bottom: 1px solid rgba(255,255,255,.2);
}

.impact-item {
    padding: 35px 20px;
    border-right: 1px solid rgba(255,255,255,.2);
}

.impact-item:last-child {
    border-right: none;
}

.impact-item strong {
    display: block;
    font-family: "Playfair Display", serif;
    color: var(--orange);
    font-size: 46px;
}

.impact-item span {
    color: #d4e2dc;
    font-size: 13px;
}


/* =========================
   DONATION
   ========================= */

.donation-section {
    padding: 100px 0;
    background: #f7f2e8;
}

.donation-wrapper {
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: center;
    gap: 80px;
}

.donation-text h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 22px;
}

.donation-text > p {
    color: var(--text);
    max-width: 570px;
}

.donation-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 35px;
    gap: 15px;
}

.donation-points div {
    border-left: 3px solid var(--orange);
    padding-left: 14px;
}

.donation-points strong {
    display: block;
    color: var(--green);
    font-size: 18px;
}

.donation-points span {
    display: block;
    color: var(--text);
    font-size: 11px;
    line-height: 1.4;
}

.donation-card {
    background: white;
    padding: 32px;
    border-radius: 7px;
    box-shadow: 0 15px 45px rgba(42, 57, 50, .12);
}

.donation-card h3 {
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: 28px;
}

.donation-card > p {
    color: var(--text);
    font-size: 13px;
    margin-bottom: 20px;
}

.amount-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
    margin-bottom: 12px;
}

.amount-grid button {
    padding: 11px 4px;
    background: white;
    border: 1px solid var(--border);
    color: var(--green);
    border-radius: 4px;
    font-weight: 700;
}

.amount-grid button:hover {
    border-color: var(--green);
    background: var(--green-light);
}

.donation-card input {
    width: 100%;
    padding: 13px;
    margin-bottom: 10px;
    border: 1px solid var(--border);
    border-radius: 4px;
    outline: none;
}

.donation-card input:focus {
    border-color: var(--green);
}

.donate-button {
    width: 100%;
    border: none;
    margin-top: 5px;
}

.donation-card small {
    display: block;
    text-align: center;
    color: #89938e;
    margin-top: 13px;
    font-size: 10px;
}


/* =========================
   CAMPAIGNS
   ========================= */

.campaign-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.campaign-card {
    position: relative;
    height: 470px;
    overflow: hidden;
    border-radius: 5px;
}

.campaign-card > img {
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.campaign-card:hover > img {
    transform: scale(1.05);
}

.campaign-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        transparent 30%,
        rgba(0,0,0,.8) 100%
    );
}

.campaign-overlay {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    padding: 30px;
    color: white;
}

.campaign-overlay span {
    color: #ffb264;
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.campaign-overlay h3 {
    font-family: "Playfair Display", serif;
    font-size: 29px;
    line-height: 1.15;
    margin: 8px 0;
}

.campaign-overlay p {
    font-size: 13px;
    color: #e2e8e5;
    margin-bottom: 15px;
}

.campaign-overlay a {
    font-size: 13px;
    font-weight: 700;
}


/* =========================
   STORY
   ========================= */

.story {
    background: var(--cream);
}

.story-image {
    position: relative;
}

.story-image img {
    height: 520px;
    object-fit: cover;
    border-radius: 5px;
}

.play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;

    background: var(--orange);
    color: white;
    border-radius: 50%;
    font-size: 20px;
    padding-left: 4px;
}

.story-content h2 {
    font-family: "Playfair Display", serif;
    color: var(--dark);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.2;
    margin-bottom: 20px;
}

.story-content > p {
    color: var(--text);
    margin-bottom: 25px;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: white;
    font-weight: 700;
}

.story-author strong,
.story-author span {
    display: block;
}

.story-author span {
    color: #82908a;
    font-size: 12px;
}


/* =========================
   VOLUNTEER
   ========================= */

.volunteer {
    padding: 75px 0;
    background: var(--orange);
    color: white;
}

.volunteer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.volunteer h2 {
    color: white;
    font-family: "Playfair Display", serif;
    font-size: clamp(35px, 5vw, 55px);
    line-height: 1.1;
    max-width: 600px;
}

.volunteer p {
    color: #fff4e8;
    margin-top: 12px;
}

.btn-light {
    background: white;
    color: var(--green-dark);
    white-space: nowrap;
}

.btn-light:hover {
    background: var(--dark);
    color: white;
}


/* =========================
   PARTNERS
   ========================= */

.partners {
    padding: 65px 0;
    text-align: center;
}

.partner-list {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    align-items: center;
}

.partner-list div {
    color: #a5aea9;
    font-size: 19px;
    font-weight: 700;
}


/* =========================
   CONTACT
   ========================= */

.contact {
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.1;
    margin-bottom: 20px;
}

.contact > .container > div > p {
    color: var(--text);
}

.contact-details {
    margin-top: 35px;
    display: grid;
    gap: 20px;
}

.contact-details strong,
.contact-details span {
    display: block;
}

.contact-details strong {
    color: var(--green);
    font-size: 13px;
    margin-bottom: 4px;
}

.contact-details span {
    color: var(--text);
    font-size: 14px;
}

.contact-form {
    background: white;
    padding: 35px;
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(40,60,50,.08);
}

.contact-form h3 {
    font-family: "Playfair Display", serif;
    color: var(--dark);
    font-size: 28px;
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 13px;
    margin-bottom: 10px;
    outline: none;
    background: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--green);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn {
    border: none;
    width: 100%;
}


/* =========================
   FAQ
   ========================= */

.faq-list {
    max-width: 850px;
}

.faq details {
    border-top: 1px solid var(--border);
}

.faq details:last-child {
    border-bottom: 1px solid var(--border);
}

.faq summary {
    list-style: none;
    padding: 23px 5px;
    cursor: pointer;
    color: var(--dark);
    font-weight: 700;

    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary span {
    color: var(--orange);
    font-size: 23px;
    line-height: 1;
}

.faq details[open] summary span {
    transform: rotate(45deg);
}

.faq details p {
    color: var(--text);
    font-size: 14px;
    padding: 0 40px 25px 5px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    background: #123b30;
    color: #b9ccc4;
    padding-top: 70px;
}


/* =========================
   MAIN FOOTER
   ========================= */

.footer-main {
    display: grid;

    grid-template-columns:
        2.2fr
        1fr
        1fr
        1fr
        1fr;

    gap: 45px;

    padding-bottom: 55px;
}


/* =========================
   FOOTER BRAND
   ========================= */

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.footer-logo strong {
    display: block;

    font-family: "Playfair Display", serif;

    color: #ffffff;

    font-size: 24px;

    line-height: 1;
}

.footer-logo small {
    display: block;

    color: #f39a3f;

    font-size: 9px;

    letter-spacing: 3px;

    margin-top: 5px;
}

.footer-brand > p {
    color: #b9ccc4;

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 24px;
}


/* =========================
   FOOTER DONATE
   ========================= */

.footer-donate {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    background: var(--orange);

    color: #fff;

    padding: 12px 23px;

    border-radius: 4px;

    font-size: 13px;

    font-weight: 700;

    transition: .25s;
}

.footer-donate:hover {
    background: var(--orange-dark);

    transform: translateY(-2px);
}


/* =========================
   SOCIAL LINKS
   ========================= */

.footer-social {
    display: flex;

    gap: 9px;

    margin-top: 25px;
}

.footer-social a {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255,255,255,.18);

    border-radius: 50%;

    color: #ffffff;

    font-size: 12px;

    font-weight: 700;

    transition: .25s;
}

.footer-social a:hover {
    background: var(--orange);

    border-color: var(--orange);

    transform: translateY(-2px);
}


/* =========================
   FOOTER COLUMNS
   ========================= */

.footer-column h4 {
    color: #ffffff;

    font-size: 13px;

    letter-spacing: 1px;

    margin-bottom: 20px;

    position: relative;
}

.footer-column h4::after {
    content: "";

    display: block;

    width: 28px;
    height: 2px;

    background: var(--orange);

    margin-top: 9px;
}

.footer-column a {
    display: block;

    color: #b9ccc4;

    font-size: 13px;

    margin: 11px 0;

    transition: .2s;
}

.footer-column a:hover {
    color: #ffffff;

    padding-left: 4px;
}


/* =========================
   CONTACT STRIP
   ========================= */

.footer-contact {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr;

    gap: 25px;

    padding: 30px 0;

    border-top: 1px solid rgba(255,255,255,.12);

    border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 14px;
}

.contact-icon {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    background: rgba(243,154,63,.12);

    color: var(--orange);

    border-radius: 50%;

    font-size: 16px;

    font-weight: 700;
}

.footer-contact-item strong {
    display: block;

    color: #ffffff;

    font-size: 11px;

    letter-spacing: 1px;

    margin-bottom: 5px;
}

.footer-contact-item span,
.footer-contact-item a {
    display: block;

    color: #b9ccc4;

    font-size: 12px;

    line-height: 1.6;
}

.footer-contact-item a:hover {
    color: var(--orange);
}


/* =========================
   BOTTOM BAR
   ========================= */

.footer-bottom {
   min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    font-size: 11px;
}

.footer-bottom p {
    color: #ffffff;;
}



/* =========================================================
   FOOTER - TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .footer-main {
        grid-template-columns:
            2fr
            1fr
            1fr
            1fr;

        gap: 35px;
    }

    .footer-brand {
        grid-column: 1 / -1;

        max-width: 600px;
    }

    .footer-contact {
        grid-template-columns: 1fr 1fr;
    }

}


/* =========================================================
   FOOTER - MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .footer {
        padding-top: 55px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;

        gap: 40px 25px;

        padding-bottom: 45px;
    }

    .footer-brand {
        grid-column: 1 / -1;

        max-width: 100%;
    }

    .footer-contact {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .footer-bottom {
        flex-direction: column;

        justify-content: center;

        text-align: center;

        padding: 22px 0;

        gap: 12px;
    }

    .footer-bottom div {
        justify-content: center;

        flex-wrap: wrap;

        gap: 10px 18px;
    }

}


/* =========================================================
   FOOTER - SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .footer-main {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-logo img {
        width: 48px;
        height: 48px;
    }

    .footer-logo strong {
        font-size: 21px;
    }

    .footer-brand > p {
        font-size: 12px;
    }

    .footer-column a {
        font-size: 12px;
    }

    .footer-contact {
        padding: 25px 0;
    }

}


/* =========================
   FLOATING DONATE
   ========================= */

.floating-donate {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;

    display: flex;
    align-items: center;
    gap: 8px;

    background: var(--orange);
    color: white;

    padding: 14px 19px;
    border-radius: 50px;

    box-shadow: 0 8px 30px rgba(0,0,0,.2);

    font-size: 13px;
    font-weight: 700;
}

.floating-donate:hover {
    background: var(--orange-dark);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .nav-menu {
        gap: 16px;
    }

    .programme-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        min-height: 620px;
    }

    .hero-card {
        width: 290px;
    }

    .two-column {
        gap: 45px;
    }

    .donation-wrapper {
        gap: 40px;
    }

    .partner-list {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .container {
        width: min(100% - 30px, 600px);
    }

    .top-bar {
        display: none;
    }


    /* Mobile navigation */

    .nav-container {
        height: 70px;
    }

    .menu-button {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;

        display: none;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        background: white;
        border-top: 1px solid var(--border);
        box-shadow: 0 15px 30px rgba(0,0,0,.08);
    }

    .nav-menu > a {
        padding: 15px 20px;
        border-bottom: 1px solid #f0f2f1;
    }

    .nav-menu .nav-donate {
        margin: 12px 20px;
        text-align: center;
    }

    #menu-toggle:checked ~ .nav-menu {
        display: flex;
    }


    /* Hero */
   .hero {
    position: relative !important;
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    background: #fff;
}

.hero-slideshow {
    position: relative;
    width: 100%;
    aspect-ratio: 1.45 / 1;
    overflow: hidden;
}

.hero-slideshow img {
    position: absolute;
    inset: 0;

    width: 100% !important;
    height: 100% !important;

    object-fit: contain !important;
    object-position: center;

    opacity: 0;
    visibility: hidden;

    transition: opacity 1s ease-in-out;

    filter: none !important;
}

.hero-slideshow img.active {
    opacity: 1;
    visibility: visible;
}



    /* Trust */

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid > div {
        border-bottom: 1px solid rgba(255,255,255,.25);
    }


    /* Sections */

    .section {
        padding: 70px 0;
    }

    .section-heading {
        display: block;
        margin-bottom: 35px;
    }

    .section-heading > p {
        margin-top: 15px;
    }


    /* About */

    .two-column {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-image img {
        height: 400px;
    }

    .experience-box {
        left: 10px;
        bottom: 35px;
    }


    /* Programmes */

    .programme-grid {
        grid-template-columns: 1fr;
    }

    .programme-image {
        height: 250px;
    }


    /* Impact */

    .impact {
        padding: 70px 0;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-item:nth-child(2) {
        border-right: none;
    }

    .impact-item:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.2);
    }


    /* Donation */

    .donation-wrapper {
        grid-template-columns: 1fr;
    }

    .donation-points {
        grid-template-columns: 1fr;
    }

    .donation-card {
        width: 100%;
    }


    /* Campaigns */

    .campaign-grid {
        grid-template-columns: 1fr;
    }

    .campaign-card {
        height: 420px;
    }


    /* Story */

    .story-image img {
        height: 400px;
    }


    /* Volunteer */

    .volunteer-content {
        flex-direction: column;
        align-items: flex-start;
    }


    /* Partners */

    .partner-list {
        grid-template-columns: repeat(2, 1fr);
    }


    /* Contact */

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }


    /* Footer */

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 25px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        padding: 20px 0;
        text-align: center;
    }

}




/* =========================================================
   SMALL PHONES
   ========================================================= */


@media (max-width: 768px) {

    .hero {
        height: calc(100vh - 70px);
        min-height: 0;
        aspect-ratio: auto;
    }

    .hero-slideshow {
        width: 100%;
        height: 100%;
    }

    .hero-slideshow img {
        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
        object-position: center center;
    }
}

@media (max-width: 480px) {

    .container {
        width: calc(100% - 24px);
    }

    .logo strong {
        font-size: 20px;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
    }


    .trust-grid strong {
        font-size: 24px;
    }

    .trust-grid span {
        font-size: 10px;
    }

    .about-image {
        padding-right: 10px;
        padding-bottom: 15px;
    }

    .about-image img {
        height: 350px;
    }

    .experience-box {
        left: 0;
        padding: 16px;
    }

    .experience-box strong {
        font-size: 32px;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .impact-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.2);
    }

    .impact-item:last-child {
        border-bottom: none;
    }

    .impact-item strong {
        font-size: 38px;
    }

    .donation-card {
        padding: 22px;
    }

    .amount-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .campaign-card {
        height: 390px;
    }

    .story-image img {
        height: 350px;
    }

    .contact-form {
        padding: 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-about {
        grid-column: auto;
    }

    .footer-bottom div {
        flex-wrap: wrap;
        justify-content: center;
    }

    .floating-donate {
        right: 12px;
        bottom: 12px;
    }

    .floating-donate span {
        display: none;
    }

    .floating-donate {
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
    }

}