/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a2e; background: #ffffff; line-height: 1.7; font-size: 16px;
}
a { color: #1a6d5e; text-decoration: none; transition: color .2s; }
a:hover { color: #0e4a3f; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  background: rgba(255,255,255,.97); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,.06); transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

/* Logo */
.logo { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 1.4rem; color: #1a1a2e; }
.logo:hover { color: #1a1a2e; }
.logo__icon { color: #1a6d5e; font-size: 1.6rem; }

/* Navigation */
.nav__list { display: flex; align-items: center; gap: 8px; }
.nav__link {
  padding: 8px 16px; border-radius: 8px; font-size: .9rem; font-weight: 500;
  color: #4a4a5a; transition: all .2s;
}
.nav__link:hover, .nav__link.active { background: #f0f7f5; color: #1a6d5e; }
.nav__link--donate {
  background: #1a6d5e; color: #fff !important; padding: 10px 20px;
  box-shadow: 0 4px 12px rgba(26,109,94,.25);
}
.nav__link--donate:hover { background: #0e4a3f; transform: translateY(-1px); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: #1a1a2e; border-radius: 2px; transition: all .3s; }

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__list {
    position: fixed; top: 72px; left: 0; right: 0; background: #fff;
    flex-direction: column; padding: 16px; gap: 4px;
    transform: translateY(-120%); opacity: 0; transition: all .3s;
    box-shadow: 0 10px 30px rgba(0,0,0,.1); z-index: 99;
  }
  .nav__list.open { transform: translateY(0); opacity: 1; }
  .nav__link { width: 100%; text-align: center; padding: 12px; }
}

/* ===== HERO ===== */
.hero {
  min-height: 90vh; display: flex; align-items: center; position: relative;
  background: linear-gradient(135deg, #0a2a22 0%, #1a6d5e 50%, #2a9d8f 100%);
  overflow: hidden;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0L60 30L30 60L0 30Z" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
  opacity: .4;
}
.hero__content { position: relative; z-index: 2; text-align: center; padding: 100px 0; }
.hero__title { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 800; color: #fff; margin-bottom: 20px; line-height: 1.15; }
.hero__title .highlight { color: #b8e6d9; }
.hero__subtitle { font-size: 1.15rem; color: rgba(255,255,255,.85); max-width: 640px; margin: 0 auto 36px; line-height: 1.7; }
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: 10px; font-weight: 600; font-size: .95rem;
  border: 2px solid transparent; cursor: pointer; transition: all .25s;
  text-decoration: none !important;
}
.btn--primary { background: #fff; color: #1a6d5e; }
.btn--primary:hover { background: #b8e6d9; color: #0e4a3f; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-2px); }
.btn--large { padding: 18px 40px; font-size: 1.05rem; }
.btn--full { width: 100%; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section--alt { background: #f8fbfa; }
.section--impact { background: linear-gradient(135deg, #0e4a3f, #1a6d5e); color: #fff; }
.section__header { text-align: center; margin-bottom: 48px; }
.section__header h2 { font-size: 2rem; font-weight: 700; margin-bottom: 12px; color: #1a1a2e; }
.section--alt .section__header h2 { color: #1a1a2e; }
.section__header p { color: #5a5a6a; max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section--impact .section__header h2 { color: #fff; }
.section--impact .section__header p { color: rgba(255,255,255,.8); }

/* ===== CARDS ===== */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.card {
  background: #fff; border-radius: 16px; padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,.05); transition: all .3s;
  border: 1px solid rgba(0,0,0,.04); text-align: center;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.1); }
.card__icon { font-size: 2rem; margin-bottom: 16px; }
.card__title { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.card__text { color: #5a5a6a; font-size: .9rem; line-height: 1.65; }

/* ===== PROGRAMS ===== */
.programs-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.program-item {
  background: #fff; padding: 28px 24px; border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04); border: 1px solid rgba(0,0,0,.05);
  transition: all .3s;
}
.program-item:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(0,0,0,.08); }
.program-item h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: #1a6d5e; }
.program-item p { color: #5a5a6a; font-size: .9rem; }

/* ===== IMPACT ===== */
.impact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; text-align: center; }
.impact-item { padding: 24px; }
.impact-item__number { display: block; font-size: 2.8rem; font-weight: 800; color: #b8e6d9; margin-bottom: 4px; }
.impact-item__label { font-size: .95rem; color: rgba(255,255,255,.8); }

/* ===== CTA BLOCK ===== */
.cta-block { text-align: center; }
.cta-block h2 { font-size: 1.8rem; margin-bottom: 12px; }
.cta-block p { color: #5a5a6a; margin-bottom: 24px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-block .btn { margin: 8px; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #0a2a22, #1a6d5e); padding: 120px 0 60px;
  text-align: center;
}
.page-hero h1 { font-size: 2.4rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,.8); max-width: 600px; margin: 0 auto; }

/* ===== CONTENT BLOCK ===== */
.content-block { max-width: 800px; margin: 0 auto; }
.content-block h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 16px; margin-top: 32px; color: #1a1a2e; }
.content-block h2:first-child { margin-top: 0; }
.content-block p { color: #4a4a5a; margin-bottom: 16px; }
.content-block blockquote {
  border-left: 4px solid #1a6d5e; padding: 16px 24px; margin: 20px 0;
  font-style: italic; color: #3a3a4a; background: #f0f7f5; border-radius: 0 8px 8px 0;
}

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; max-width: 900px; margin: 0 auto; }
.team-card { background: #fff; border-radius: 16px; padding: 32px 24px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,.05); border: 1px solid rgba(0,0,0,.04); }
.team-card__avatar {
  width: 72px; height: 72px; border-radius: 50%; background: #1a6d5e; color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.2rem;
  margin: 0 auto 16px;
}
.team-card h3 { font-size: 1rem; font-weight: 700; }
.team-card__role { display: block; font-size: .85rem; color: #1a6d5e; font-weight: 600; margin: 4px 0 12px; }
.team-card p { color: #5a5a6a; font-size: .85rem; }

/* ===== MISSIONS DETAIL ===== */
.mission-detail { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 28px; }
.mission-detail__icon { font-size: 2rem; flex-shrink: 0; line-height: 1; }
.mission-detail h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; color: #1a6d5e; }
.mission-detail p { color: #4a4a5a; }

/* ===== DONATE PAGE ===== */
.donate-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 768px) { .donate-grid { grid-template-columns: 1fr; } }
.donate-info h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 16px; }
.donate-info h3 { font-size: 1.15rem; font-weight: 600; margin: 24px 0 12px; color: #1a6d5e; }
.donate-info p { color: #4a4a5a; margin-bottom: 12px; }
.donate-methods { background: #f0f7f5; border-radius: 14px; padding: 24px; margin: 20px 0; }
.bank-details { display: grid; gap: 12px; margin-top: 16px; }
.bank-detail { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.bank-detail strong { font-weight: 600; color: #1a1a2e; }
.bank-detail .iban { font-family: 'Courier New', monospace; font-weight: 700; color: #1a6d5e; letter-spacing: 1px; }
.donate-other ul { list-style: disc; padding-left: 20px; }
.donate-other li { margin-bottom: 8px; color: #4a4a5a; }

.donate-summary .donate-card {
  background: linear-gradient(135deg, #0e4a3f, #1a6d5e); color: #fff;
  border-radius: 16px; padding: 32px; position: sticky; top: 100px;
}
.donate-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 16px; }
.donate-card ul { margin-bottom: 16px; }
.donate-card li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.9); }
.donate-card__note { font-size: .85rem; color: rgba(255,255,255,.7); margin-top: 16px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 24px; }
.contact-info h3 { font-size: 1.15rem; font-weight: 600; margin: 24px 0 12px; color: #1a6d5e; }
.contact-detail { margin-bottom: 20px; }
.contact-detail strong { display: block; font-weight: 600; color: #1a1a2e; margin-bottom: 4px; }
.contact-detail p { color: #4a4a5a; }

.contact-form { background: #f8fbfa; border-radius: 16px; padding: 32px; }
.contact-form h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 500; margin-bottom: 6px; color: #1a1a2e; font-size: .9rem; }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 2px solid #e0e0e8; border-radius: 10px;
  font-family: inherit; font-size: .95rem; transition: border-color .2s; background: #fff;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #1a6d5e; }

/* ===== LEGAL CONTENT ===== */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 1.3rem; font-weight: 700; margin-top: 36px; margin-bottom: 12px; color: #1a6d5e; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: #4a4a5a; margin-bottom: 12px; line-height: 1.8; }
.legal-content ul { list-style: disc; padding-left: 20px; margin-bottom: 12px; }
.legal-content li { color: #4a4a5a; margin-bottom: 6px; }

/* ===== FOOTER ===== */
.footer { background: #0e1f1a; color: rgba(255,255,255,.8); padding: 56px 0 0; }
.footer__inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
.footer__col h4 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer__col p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.6); }
.footer__col ul li { margin-bottom: 8px; }
.footer__col ul a { color: rgba(255,255,255,.6); font-size: .88rem; }
.footer__col ul a:hover { color: #b8e6d9; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 40px; padding: 20px 0; text-align: center; }
.footer__bottom p { font-size: .82rem; color: rgba(255,255,255,.4); }
