.merriweather-12123434454 {
    font-family: "Merriweather", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}


:root {
    --primary-color: #F85A6E;
    /* Matches the logo pink/red */
    --primary-hover: #d64557;
    --text-color: #1a1a1a;
    --text-light: #555;
    --bg-color: #ffffff;
    --light-gray: #f9f9f9;
    --border-color: #eaeaea;
}|


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

/* Add a universal offset for all anchor links on the page */
html {
    scroll-padding-top: 75px;
    /* Adjust the value based on your fixed header's height */
}

body {
    font-family: 'Merriweather', sans-serif;
    color: var(--text-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 165%;
    /* 26.4px */
    letter-spacing: 1px;
}

.section-title {
    font-family: 'Merriweather', sans-serif;
    color: var(--primary-color);
    font-size: 16px !important;
    font-style: normal;
    font-weight: 600;
    line-height: 125%;
    /* 26.4px */
    letter-spacing: 2px;

    text-transform: uppercase;
}

h2 {
    color: #000;
    font-family: Merriweather;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 155%;
    /* 55.8px */
    letter-spacing: 1px;
}


code, pre {
  background-color: var(--light-gray);
  border: 1px solid lightgrey;
  white-space: nowrap;
  border-radius: 4px;
  font-size: .9rem;
  padding-inline: 8px;
  padding-block: 4px;
  &.transparent {
    background-color: transparent;
    border: none;
  }
}

.logo {
    display: flex;
}

/* Layout Utilities */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s, opacity 0.3s, transform 0.3s;
    border: none;
    cursor: pointer;
}

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

/* Header */
header {
    padding: 15px 0;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    margin-left: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Sticky Nav Donate Button - Initially Hidden */
.nav-donate-btn {
    margin-left: 30px;
    padding: 10px 20px;
    font-size: 0.9rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.nav-donate-btn.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
/*
.hero-btn {
    font-size: 1.1rem;
    padding: 12px 30px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
} */

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px 120px 20px;
    background-color: var(--light-gray);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

/* Hero CTA Container */
/* .hero-cta-container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
} */



.donation-text {
    font-size: 1rem;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    font-style: italic;
    line-height: 1.5;
}

/* Mission & Vision */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}



/* Core Values */
.values {
    background-color: var(--light-gray);
}

.values-grid {
    gap: 30px;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    /* Creates two equal-width columns */
    gap: 10px;
    /* Optional: Adds space between columns and rows */
}

.value-card {
    background: white;
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.value-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Founders Section */
.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    margin-top: 50px;
}

.founder-card {
    text-align: center;
    padding: 20px;
}

.founder-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    background-color: #ddd;
    /* Placeholder color */
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.founder-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000;
}

.founder-location {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 5px;
}

.founder-linkedin {
    display: flex;
    font-size: 0.9rem;
    color: var(--text-color);
    text-decoration: none;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;

}

.founder-linkedin:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.founder-bio {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.6;
    text-align: left;
    /* Or justify, per preference */
}

/* Footer */
footer {
    background-color: #111;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

footer h3 {
    margin-bottom: 15px;
}

footer p {
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.legal {
    font-size: 0.8rem;
    margin-top: 40px;
    opacity: 0.5;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* Mobile Responsive */
@media (max-width: 860px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
    }

    .nav-donate-btn {
        margin-left: auto;
        /* Push to right on mobile */
    }
}


/*Contact Form*/
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  /*font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;*/
  /*background: #f7faf8;*/
  color: #1a3328;
  min-height: 100vh;
  /*padding: 3rem 1.25rem;*/
}

.wrap {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #f7faf8;
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #d6e8df;
  padding: 2.5rem 2rem;
  margin: 2rem auto;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #5a8c72;
  font-weight: 500;
  margin-bottom: .5rem;
}

h1 {
  font-size: 1.75rem;
  font-weight: 400;
  color: #1a3328;
  margin-bottom: .35rem;
  line-height: 1.25;
}

.subtitle {
  font-size: .9rem;
  color: #6b8c7a;
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* ── Fields ── */
.field { margin-bottom: 1.25rem; }

label {
  display: block;
  font-size: .75rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #3d6e57;
  font-weight: 500;
  margin-bottom: .4rem;
}

.opt {
  font-size: .68rem;
  color: #9ab8ac;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-left: .4rem;
  font-weight: 400;
}

input, textarea {
  width: 100%;
  padding: .65rem .85rem;
  border: 1px solid #c8dbd4;
  border-radius: 6px;
  font-size: .95rem;
  color: #1a3328;
  background: #fff;
  transition: border .18s, box-shadow .18s;
  outline: none;
  font-family: inherit;
}

input:hover, textarea:hover { border-color: #a0c4b4; }

input:focus, textarea:focus {
  border-color: #2d7a55;
  box-shadow: 0 0 0 3px rgba(45, 122, 85, .12);
}

input.error, textarea.error {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, .1);
}

.err-msg {
  font-size: .78rem;
  color: #c0392b;
  margin-top: .35rem;
  display: none;
}
.err-msg.show { display: block; }

textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.55;
}

/* ── Extra fields ── */
.extra-fields { margin-bottom: .5rem; }

.extra-row {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: .5rem;
  align-items: center;
  margin-bottom: .75rem;
}

.remove-btn {
  background: none;
  border: 1px solid #c8dbd4;
  border-radius: 5px;
  width: 32px;
  height: 38px;
  cursor: pointer;
  color: #9ab8ac;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: border-color .15s, color .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.remove-btn:hover { border-color: #c0392b; color: #c0392b; }

/* ── Add field btn ── */
.add-btn {
  width: 100%;
  padding: .6rem 1rem;
  background: none;
  border: 1px dashed #c8dbd4;
  border-radius: 6px;
  color: #4a7060;
  font-size: .83rem;
  letter-spacing: .04em;
  cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
  margin-bottom: 1.75rem;
  font-family: inherit;
}
.add-btn:hover { border-color: #2d7a55; color: #2d7a55; background: #f3faf7; }

/* ── Divider ── */
hr { border: none; border-top: 1px solid #e8f0ed; margin: 1.5rem 0; }

/* ── Submit ── */
.submit-btn {
  width: 100%;
  padding: .85rem;
  background: #1a5c3a;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .06em;
  cursor: pointer;
  transition: background .18s;
  font-family: inherit;
}
.submit-btn:hover { background: #2d7a55; }
.submit-btn:disabled { opacity: .65; cursor: not-allowed; }

.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.modal-overlay.show { opacity: 1; pointer-events: all; }

.modal {
  background: #fff;
  border-radius: 10px;
  padding: 2.25rem 2rem;
  max-width: 380px;
  width: 90%;
  text-align: center;
  transform: translateY(8px);
  transition: transform .2s;
}
.modal-overlay.show .modal { transform: translateY(0); }

.modal-icon { font-size: 2.4rem; margin-bottom: .75rem; }

.modal h2 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #1a3328;
  margin-bottom: .5rem;
}

.modal p {
  font-size: .9rem;
  color: #4a7060;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.modal-close {
  background: #1a5c3a;
  border: none;
  color: #fff;
  padding: .65rem 1.75rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: .9rem;
  font-family: inherit;
  transition: background .15s;
}
.modal-close:hover { background: #2d7a55; }
