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

    :root {
      --green: #2d6a4f;
      --green-dark: #1b4332;
      --green-light: #52b788;
      --orange: #e07b39;
      --cream: #f9f6f0;
      --dark: #1a1a1a;
      --mid: #4a4a4a;
      --light: #f5f5f5;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--dark);
      background:#b4c5bc;
      overflow-x: hidden;
    }
    a {
      text-decoration: none;
    }
/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(15, 107, 71, 0.08);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
}
.container {
    margin: auto;
    width: 1120px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 240px;
    color: var(--mid);
}
.brand-mark {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(31, 138, 90, 0.12);
}
/* NAVIGATION */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background:none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  box-shadow:none
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  position: relative;
  list-style: none;
}

.nav-links li:hover .dropdown_menu {
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

nav ul a {
  text-decoration: none;
  color: var(--mid);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}

nav ul a:hover {
  color: var(--green);
}
 

    .logo {
      display: flex; align-items: center; gap: 10px;
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; font-weight: 700;
      color: var(--green-dark);
      text-decoration: none;
    
    }

    .logo-icon {
      width: 60px; height: 60px;
      background: var(--green);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
    }
    .img-logo {
    width: 60px;
    height: 60px;
    background: var(--green);
    border-radius: 50%;
    }
    .logo small { display: block; font-size: .6rem; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; color: var(--green-light); font-family: 'DM Sans', sans-serif; }


    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 10px 22px; border-radius: 6px;
      font-family: 'DM Sans', sans-serif;
      font-size: .9rem; font-weight: 600;
      cursor: pointer; text-decoration: none;
      transition: all .2s;
      border: none;
    }
   
    .btn-primary { background: var(--green); color: #fff; }
    .btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
    .btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.7); }
    .btn-outline:hover { background: rgba(255,255,255,.15); }
    .btn-orange { background: var(--orange); color: #fff; }
    .btn-orange:hover { background: #c96a2a; }
    .btn-white { background: #fff; color: var(--green); }
    .btn-white:hover { background: var(--cream); }

    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s; }
html {
  scroll-behavior: smooth;
}
  
    
    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 90vh;
      display: flex; align-items: center;
      background: linear-gradient(135deg, rgba(50, 101, 84, 0.85) 0%, rgba(45,106,79,.7) 60%, rgba(82,183,136,.4) 100%);
  background-image: url("../css/images/swe.jpeg.jpg");
  background-size: cover;        /* makes it fill screen */
  background-position: center;   /* centers image */
  background-repeat: no-repeat;  /* prevents repeating */
  height: 100vh;
  margin: 0;

      padding: 80px 5%;
    }

    .hero-badge {
      display: inline-block;
      background: rgba(255,255,255,.2);
      color: #fff; font-size: .75rem;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 6px 14px; border-radius: 20px;
      margin-bottom: 20px;
      backdrop-filter: blur(4px);
    }

    .hero-content { max-width: 620px; animation: fadeUp .8s ease both; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(100px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 900; line-height: 1.1;
      color: #fff; margin-bottom: 20px;
    }

    .hero h1 .accent { color: var(--orange); font-style: italic; }

    .hero p {
      color: rgba(255,255,255,.85); font-size: 1.05rem;
      line-height: 1.7; margin-bottom: 32px; max-width: 500px;
    }

    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

    .hero-social-proof {
      display: flex; align-items: center; gap: 12px;
      color: rgba(255,255,255,.8); font-size: .85rem;
    }

    .avatars { display: flex; }
    .avatars span {
      width: 32px; height: 32px; border-radius: 50%;
      border: 2px solid #fff;
      background: var(--green-light);
      display: flex; align-items: center; justify-content: center;
      font-size: .7rem; color: #fff; font-weight: 700;
      margin-left: -8px;
    }
    .avatars span:first-child { margin-left: 0; }

    
    /* ── PILLARS ── */
    .section { padding: 80px 5%;}
    .section-label { color: var(--green); font-size: .75rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; }
    .section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; margin-bottom: 16px; }
    .section-subtitle { color: var(--mid); font-size: 1rem; line-height: 1.7; max-width: 560px; }
    .text-center { text-align: center; }
    .text-center .section-subtitle { margin: 0 auto; }

    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
      margin-top: 48px;
    }

    .pillar-card {
      background: var(--white);
      border-radius: 12px; padding: 28px;
      transition: all .3s;
      border: 1px solid transparent;
    }

    .pillar-card:hover {
      border-color: var(--green-light);
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(45,106,79,.1);
    }

    .pillar-icon {
      font-size: 2rem; margin-bottom: 16px;
      width: 52px; height: 52px;
      background: rgba(45,106,79,.1);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
    }

    .pillar-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
    .pillar-card p { font-size: .88rem; color: var(--mid); line-height: 1.6; margin-bottom: 16px; }
    .learn-more { color: var(--green); font-size: .85rem; font-weight: 600; text-decoration: none; }
    .learn-more:hover { text-decoration: underline; }

/*MISSION*/
.mission-item {
    list-style: none;
    margin: 20px 0;
}
summary {
    font-size: 1.2rem;
    font-weight: bold;
    color: #27ae60; 
    cursor: pointer;
    list-style: none; 
    transition: color 0.3s ease;
}

summary:hover {
    color: #1e8449;
    text-decoration: underline;
}

.mission-content {
    background-color: #f4f9f4;
    padding: 20px;
    border-left: 5px solid #27ae60;
    margin-top: 10px;
    border-radius: 5px;
    animation: fadeIn 0.5s ease; 
}

.mission-content h3 {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    font-weight: normal;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
#mission-statement {
    scroll-margin-top: 100px;}

   /*-UPDATES-*/
.updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.update-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.update-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.update-card h3 {
  padding: 15px;
}

.update-card p {
  padding: 0 15px 20px;
  font-size: 0.9rem;
  color: var(--mid);
}

    /* ── IMPACT ── */
    .impact {
      background: var(--green-dark);
      color: #fff;
      padding: 80px 5%;
      text-align: center;
    }

    .impact .section-title { color: #fff; }
    .impact .section-title .accent { color: var(--green-light); }
    .impact .section-subtitle { color: rgba(255,255,255,.75); margin: 0 auto 48px; max-width: 560px; }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 32px;
      margin-bottom: 40px;
    }

    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 4vw, 3rem);
      font-weight: 900;
      line-height: 1;
    }

    .stat-number.s1 { color: var(--green-light); }
    .stat-number.s2 { color: #f4c430; }
    .stat-number.s3 { color: #7ed8f6; }
    .stat-number.s4 { color: var(--orange); }

    .stat-item p { font-size: .88rem; color: rgba(255,255,255,.6); margin-top: 6px; }

    /* ── PROGRAMS ── */
    .programs-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }

    .programs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }

    .program-card {
      border-radius: 14px; overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,.08);
      transition: transform .3s, box-shadow .3s;
    }

    .program-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.12); }

    .program-img {
      height: 200px;
      position: relative;
      overflow: hidden;
    }

    .program-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
    .program-card:hover .program-img img { transform: scale(1.05); }

    .program-tag {
      position: absolute; top: 12px; left: 12px;
      background: var(--green); color: #fff;
      font-size: .7rem; font-weight: 600;
      letter-spacing: 1px; text-transform: uppercase;
      padding: 4px 10px; border-radius: 4px;
    }

    .program-body { padding: 20px; }
    .program-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
    .program-body p { font-size: .88rem; color: var(--mid); line-height: 1.6; margin-bottom: 14px; }

    /* ── DONATE ── */
    .donate-section {
      background: linear-gradient(135deg, var(--green-dark), var(--green));
      padding: 70px 5%;
      border-radius: 20px;
      margin: 60px 5%;
      color: #bab6b6;
      position: relative;
      overflow: hidden;
    }

    .donate-section::before {
      content: '';
      position: absolute; inset: 0;
      background: url("../css/images/don.jpeg.JPG") center/cover;
      opacity: .08;
    }

    .donate-inner { position: relative; max-width: 560px; }
    .donate-section .section-label { color: rgba(255,255,255,.6); }
    .donate-section .section-title { color: #fff; }
    .donate-section .section-title .accent { color: var(--orange); }
    .donate-section p { color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 28px; }

    .amount-grid { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
    .amount-btn {
      padding: 9px 20px; border-radius: 8px;
      border: 2px solid rgba(255,255,255,.4);
      background: rgba(255,255,255,.1); color: #fff;
      font-size: .9rem; font-weight: 600; cursor: pointer;
      transition: all .2s;
    }
    .amount-btn:hover, .amount-btn.active { background: rgba(255,255,255,.25); border-color: #fff; }
    .amount-btn small { display: block; font-size: .68rem; font-weight: 400; opacity: .8; }

    .donate-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
    .secure-note { margin-top: 14px; font-size: .78rem; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 6px; }
 
    /* ── NEWSLETTER ── */
    .newsletter { padding: 80px 5%; }

    .newsletter-wrapper {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 60px;
       align-items: center;
       background: var(--cream);
       border-radius: 20px;
       overflow: hidden;
    }

    .newsletter-img {
      height: 100%;
      min-height: 360px;
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .newsletter-img::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to right, transparent, var(--cream));
    }

    .newsletter-body { padding: 48px 48px 48px 0; }
    .newsletter-body h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 12px; }
    .newsletter-body p { color: var(--mid); font-size: .95rem; line-height: 1.7; margin-bottom: 24px; }

    .email-form { display: flex; gap: 10px; flex-wrap: wrap; }
    .email-form input {
      flex: 1; min-width: 200px;
      padding: 12px 16px; border-radius: 8px;
      border: 1.5px solid #ddd; font-size: .9rem;
      font-family: 'DM Sans', sans-serif;
      outline: none;
      transition: border-color .2s;
    }
    .email-form input:focus { border-color: var(--green); }

    .socials { display: flex; gap: 12px; margin-top: 24px; }
    .social-icon {
      width: 36px; height: 36px; border-radius: 50%;
      border: 1.5px solid #ccc;
      display: flex; align-items: center; justify-content: center;
      color: var(--mid); text-decoration: none; font-size: .85rem;
      transition: all .2s;
    }
    social-icon:hover { border-color: var(--green); color: var(--green); }
    /*-PATNERS-*/
    .partners {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.partners span {
  background: var(--light);
  padding: 10px 20px;
  border-radius: 20px;
}

/* TEAM */
#team {
  opacity: 1;
  transition: opacity .4s ease;
  padding: 60px 5%;
  background: #f9f9f9;
}

.team-header {
  text-align: center;
  margin-bottom: 40px;
}

.team-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #222;
}

.team-header h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #444;
}

.team-header p {
  color: #666;
  font-size: 1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 4fr));
  gap: 30px;
  padding: 20px;
  max-width: 1200px;
  margin:  auto;
}

.team-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}
.team-card {
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow:  4px 6px rgba(0,0,0,.1);
  transition: transform .3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

.image-container {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  margin: 10px  5px;
  color: #333;
}

.role {
  color: #7f8c8d;
  font-size: .95rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.team-links {
  margin-top: 15px;
}

.team-links a {
  text-decoration: none;
  color: #2c7a7b;
  font-weight: 500;
  margin:  10px;
  transition: color .3s ease;
}

.team-links a:hover {
  color: #1f5c5d;
}

    /* ── FOOTER ── */
    footer {
      background: var(--green-dark);
      color: rgba(255,255,255,.8);
      padding: 60px 5% 30px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 48px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .footer-brand p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.6); margin: 16px 0 20px; }
    .footer-brand .logo { color: #fff; }

    footer h4 { color: #fff; font-size: .9rem; font-weight: 700; margin-bottom: 16px; }
    footer ul { list-style: none; }
    footer ul li + li { margin-top: 10px; }
    footer ul a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .88rem; transition: color .2s; }
    footer ul a:hover { color: var(--green-light); }

    .footer-contact p { font-size: .88rem; color: rgba(255,255,255,.6); margin-bottom: 10px; display: flex; align-items: flex-start; gap: 8px; }

    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 12px;
      padding-top: 24px;
      font-size: .8rem; color: rgba(255,255,255,.4);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav ul { display: none; }
      nav ul.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: #fff; padding: 20px 5%; box-shadow: 0 8px 20px rgba(0,0,0,.1); z-index: 99; }
      .hamburger { display: flex; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .newsletter-wrapper { grid-template-columns: 1fr; }
      .newsletter-img { min-height: 200px; }
      .newsletter-img::after { background: linear-gradient(to bottom, transparent, var(--cream)); }
      .newsletter-body { padding: 0 32px 40px; }
    }

    @media (max-width: 600px) {
      .hero { min-height: 100svh; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .donate-section { margin: 40px 4%; }
    }
@media (max-width: 740px) {
      .desktop-nav {
        display: none;
      }
      .mobile-menu {
        display: block;
        position: relative;
      }
}
  .container {
    width: min(var(--container), calc(100% - 28px));
  }
  .paper {
    padding: 44px 0;
  }
  .banner-inner {
    padding: 40px 0;
  }
  .mosaic {
    grid-template-columns: 1fr;
  }
  .tile--tall {
    grid-row: auto;
    min-height: 220px;
  }
  .tile--wide {
    grid-column: auto;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-row .btn {
    width: 100%;
  }

