
:root {
  --bg: #f6f2ea;
  --bg-soft: #fffaf0;
  --text: #17201a;
  --muted: #5f6f64;
  --green: #224435;
  --green-light: #d8eadf;
  --yellow: #ffd56b;
  --orange: #f28f3b;
  --white: #ffffff;
  --line: rgba(23, 32, 26, 0.12);
  --shadow: 0 24px 70px rgba(34, 68, 53, 0.16);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 213, 107, 0.35), transparent 34rem),
    radial-gradient(circle at top right, rgba(216, 234, 223, 0.9), transparent 32rem),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; }

.site-header { padding: 24px 24px 0; }
.compact-header { min-height: auto; }

.navbar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  position: sticky;
  top: 16px;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.nav-links { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active,
.nav-links .nav-cta { color: var(--text); background: var(--green-light); }

.hero,
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 24px;
}

.page-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
  min-height: auto;
  padding-top: 56px;
  padding-bottom: 56px;
}

.page-title { padding-top: 46px; padding-bottom: 24px; }
.page-title h1,
h1 {
  max-width: 980px;
  margin: 0 0 22px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

h2, h3, p { margin-top: 0; }
.section h2 {
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 18px;
}

h3 { font-size: 25px; letter-spacing: -0.035em; }

.eyebrow,
.section-kicker,
.card-label {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.hero-text,
.page-title p,
.section-heading p,
.text-block,
.impact-copy p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.official-note {
  display: inline-block;
  margin: 10px 0 0;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.74);
  color: var(--green);
  font-weight: 800;
}

.hero-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--green); color: var(--white); box-shadow: 0 14px 34px rgba(34, 68, 53, 0.25); }
.button.secondary { background: var(--white); border: 1px solid var(--line); }

.hero-card {
  padding: 34px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 213, 107, 0.95), rgba(216, 234, 223, 0.95)), var(--white);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.hero-card h2 { font-size: clamp(36px, 5vw, 58px); line-height: 0.95; letter-spacing: -0.055em; }
.hero-card p { color: rgba(23, 32, 26, 0.72); font-weight: 600; }

.mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 28px; }
.mini-stats span { padding: 16px; background: rgba(255, 255, 255, 0.58); border-radius: 20px; font-size: 13px; color: var(--muted); }
.mini-stats strong { display: block; color: var(--text); font-size: 22px; line-height: 1; }

.two-column { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 54px; align-items: start; }
.narrow-top { padding-top: 30px; }
.text-block p { margin-bottom: 18px; }
.clean-list { padding-left: 20px; color: var(--muted); font-size: 18px; }
.clean-list li { margin-bottom: 10px; }

.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading.center { text-align: center; margin-left: auto; margin-right: auto; }

.project-section { background: rgba(255, 255, 255, 0.38); border-radius: 42px; }
.project-story { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 18px; }
.story-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 18px 40px rgba(23, 32, 26, 0.06); }
.story-card.large { grid-row: span 2; background: var(--green); color: var(--white); }
.story-card p, .info-card p { color: var(--muted); }
.story-card.large p { color: rgba(255, 255, 255, 0.78); font-size: 18px; }

.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cards-grid.three { grid-template-columns: repeat(3, 1fr); }
.cards-grid.two { grid-template-columns: repeat(2, 1fr); }
.info-card { min-height: 300px; padding: 26px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); box-shadow: 0 18px 40px rgba(23, 32, 26, 0.05); }
.info-card.tall { min-height: 340px; }
.icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 16px; background: var(--green-light); color: var(--green); font-weight: 900; }

.impact { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 34px; align-items: center; }
.impact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.stat { padding: 30px; min-height: 190px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; }
.stat strong { font-size: clamp(42px, 7vw, 76px); line-height: 0.95; letter-spacing: -0.06em; color: var(--green); }
.stat span { color: var(--muted); font-weight: 700; }

.impact-highlight { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 42px 34px; margin-top: 40px; background: var(--yellow); border-radius: 36px; }
.impact-highlight h2 { margin-bottom: 10px; }
.impact-highlight p { margin-bottom: 0; max-width: 720px; }

.quote-section { padding-top: 20px; padding-bottom: 20px; }
blockquote { margin: 0; padding: 48px; border-radius: 36px; background: var(--yellow); font-size: clamp(28px, 4vw, 54px); line-height: 1.05; letter-spacing: -0.055em; font-weight: 900; }

.legal-panel { display: grid; grid-template-columns: 1fr; gap: 22px; }
.legal-card, .contact-card, .contact-form { padding: 34px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); box-shadow: 0 18px 40px rgba(23, 32, 26, 0.06); }
.legal-card.full { width: 100%; }
.official-domain-box { background: var(--green-light); }
.legal-list { display: grid; gap: 12px; margin: 0; }
.legal-list div { display: grid; grid-template-columns: 0.4fr 0.6fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.legal-list dt { color: var(--muted); font-weight: 800; }
.legal-list dd { margin: 0; font-weight: 800; }

.contact-section { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 24px; align-items: stretch; }
.contact-card h2 { font-size: clamp(34px, 5vw, 56px); }
.contact-card p { color: var(--muted); font-size: 18px; }
.contact-details { display: grid; gap: 10px; margin-top: 28px; }
.contact-details a, .contact-details span { padding: 16px 18px; border-radius: 18px; background: var(--bg-soft); text-decoration: none; font-weight: 800; }

.team-section { padding-top: 30px; }
.team-section .section-heading { max-width: 880px; margin-bottom: 26px; }
.people-list { display: grid; grid-template-columns: 1fr; gap: 14px; margin: 24px 0 16px; max-width: 980px; }
.person-card { padding: 18px; border-radius: 20px; background: var(--bg-soft); border: 1px solid var(--line); }
.person-row { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 22px 24px; }
.person-card h3 { margin-bottom: 6px; font-size: 22px; }
.person-card p { margin: 0; color: var(--muted); font-weight: 800; }
.person-card a, .email-link { color: var(--green); font-weight: 900; text-decoration: none; white-space: nowrap; letter-spacing: -0.01em; font-size: clamp(14px, 1.4vw, 16px); }
.team-note { max-width: 820px; color: var(--muted); font-weight: 700; }
.contact-people { margin-top: 26px; display: grid; gap: 10px; }
.contact-people h3 { font-size: 20px; margin-bottom: 4px; }
.contact-people a { display: grid; gap: 4px; padding: 16px 18px; border-radius: 18px; background: var(--bg-soft); text-decoration: none; color: var(--text); }
.contact-people a span { color: var(--muted); font-weight: 700; }
.contact-people a em { color: var(--green); font-style: normal; font-weight: 900; white-space: nowrap; font-size: 14px; letter-spacing: -0.01em; }
.contact-form { display: grid; gap: 16px; }
.hidden-field { display: none; }
label { display: grid; gap: 8px; color: var(--muted); font-weight: 800; }
input, textarea { width: 100%; padding: 15px 16px; border: 1px solid var(--line); border-radius: 16px; font: inherit; color: var(--text); background: var(--bg-soft); outline: none; }
input:focus, textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(34, 68, 53, 0.1); }
.checkbox-label { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
.checkbox-label input { width: auto; margin-top: 5px; }
button { border: 0; padding: 16px 20px; border-radius: 999px; background: var(--green); color: var(--white); font: inherit; font-weight: 900; cursor: pointer; }
.form-note { margin: 0; color: var(--muted); font-size: 13px; }

.footer { max-width: 1180px; margin: 0 auto; padding: 28px 24px 48px; display: flex; justify-content: space-between; gap: 18px; color: var(--muted); font-size: 14px; }
.footer a { text-decoration: none; font-weight: 800; color: var(--green); }
.footer-links { display: flex; gap: 14px; align-items: flex-start; flex-wrap: wrap; justify-content: flex-end; }

.thanks-hero { grid-template-columns: 1fr; max-width: 900px; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .page-hero, .two-column, .project-story, .impact, .contact-section { grid-template-columns: 1fr; }
  .hero-card { transform: none; }
  .cards-grid, .cards-grid.three, .cards-grid.two { grid-template-columns: repeat(2, 1fr); }
  .impact-highlight { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 620px) {
  .site-header { padding: 14px 14px 0; }
  .hero, .section { padding: 36px 16px; }
  .page-hero { min-height: auto; }
  h1, .page-title h1 { font-size: 42px; }
  .mini-stats, .cards-grid, .cards-grid.three, .cards-grid.two, .impact-grid { grid-template-columns: 1fr; }
  .person-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  blockquote { padding: 30px; }
  .legal-list div { grid-template-columns: 1fr; gap: 4px; }
  .footer { flex-direction: column; }
  .footer-links { justify-content: flex-start; }
}

.donate-nav {
  background: var(--yellow) !important;
  color: var(--text) !important;
}

.button.donate-button {
  background: var(--yellow);
  color: var(--text);
  box-shadow: 0 14px 34px rgba(242, 143, 59, 0.18);
}

.donation-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 24px;
}

.donation-copy,
.donation-action-card {
  padding: 34px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(23, 32, 26, 0.06);
}

.donation-copy {
  background: linear-gradient(145deg, rgba(255, 213, 107, 0.92), rgba(255, 250, 240, 0.98));
}

.donation-copy p,
.donation-action-card p {
  color: var(--muted);
  font-size: 18px;
}

.donation-action-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.donation-action-card .button {
  width: fit-content;
}

@media (max-width: 980px) {
  .donation-section { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .donation-action-card .button { width: 100%; }
}

/* Donații - buton vizibil pe toate ecranele */
.floating-donate {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(23, 32, 26, 0.22);
  border: 1px solid rgba(23, 32, 26, 0.12);
}

.button.big-donate {
  min-height: 58px;
  padding: 0 28px;
  font-size: 17px;
  border: 2px solid rgba(23, 32, 26, 0.08);
}

.donation-action-card .button.primary {
  background: var(--yellow);
  color: var(--text);
  box-shadow: 0 14px 34px rgba(242, 143, 59, 0.22);
}

@media (max-width: 620px) {
  .floating-donate {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }
  body { padding-bottom: 78px; }
}
