/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green1: #0d4a22;
  --green2: #1a6b3c;
  --green3: #2d8a54;
  --green4: #e8f5ed;
  --gold: #c9952b;
  --cream: #faf9f5;
  --dark: #1a1a1a;
  --gray: #555;
  --light-gray: #e5e5e5;
  --white: #ffffff;
  --blue: #1a4a6b;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--dark);
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--light-gray);
  z-index: 100;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-img {
  height: 48px;
  width: auto;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.logo-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green1);
  line-height: 1.2;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  display: block;
  transition: transform 0.3s;
}

.nav {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.nav-item {
  background: none;
  border: none;
  padding: 0.5rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.nav-item:hover {
  background: var(--green4);
  color: var(--green2);
}

.nav-item.active {
  color: var(--white);
  background: var(--green2);
}

/* ===== PAGES ===== */
.page {
  display: none;
}

.page.active {
  display: block;
}

/* ===== PAGE BACKGROUNDS ===== */

/* ACASA - Mission section: visible water wave */
#page-acasa .section {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%231a6b3c' fill-opacity='0.07' d='M0,224L48,213.3C96,203,192,181,288,186.7C384,192,480,224,576,218.7C672,213,768,171,864,165.3C960,160,1056,192,1152,197.3C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3Cpath fill='%231a6b3c' fill-opacity='0.04' d='M0,160L48,170.7C96,181,192,203,288,197.3C384,192,480,160,576,154.7C672,149,768,171,864,176C960,181,1056,171,1152,160C1248,149,1344,139,1392,133.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom center / 100% auto,
    linear-gradient(180deg, #ffffff 0%, #eaf5ee 100%);
}

/* DESPRE NOI - Reed/stuf silhouettes */
#page-despre .page-section {
  position: relative;
  background:
    linear-gradient(180deg, #ffffff 0%, #e6f2ea 40%, #d4eadb 100%);
  overflow: hidden;
}

#page-despre .page-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 350px;
  opacity: 0.25;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 300'%3E%3Cg fill='%230d4a22'%3E%3Crect x='30' y='60' width='4' height='240' rx='2'/%3E%3Crect x='35' y='42' width='2.5' height='22' rx='1' transform='rotate(-25 35 42)'/%3E%3Cellipse cx='26' cy='48' rx='10' ry='18' transform='rotate(-15 26 48)'/%3E%3Crect x='80' y='90' width='4' height='210' rx='2'/%3E%3Cellipse cx='86' cy='78' rx='12' ry='20' transform='rotate(10 86 78)'/%3E%3Crect x='140' y='40' width='4' height='260' rx='2'/%3E%3Cellipse cx='134' cy='32' rx='9' ry='16' transform='rotate(-20 134 32)'/%3E%3Crect x='200' y='80' width='3.5' height='220' rx='1.75'/%3E%3Cellipse cx='206' cy='68' rx='11' ry='18' transform='rotate(12 206 68)'/%3E%3Crect x='270' y='50' width='4' height='250' rx='2'/%3E%3Cellipse cx='264' cy='38' rx='10' ry='16' transform='rotate(-18 264 38)'/%3E%3Crect x='350' y='70' width='3.5' height='230' rx='1.75'/%3E%3Cellipse cx='356' cy='58' rx='11' ry='18' transform='rotate(8 356 58)'/%3E%3Crect x='430' y='45' width='4' height='255' rx='2'/%3E%3Cellipse cx='424' cy='33' rx='9' ry='15' transform='rotate(-22 424 33)'/%3E%3Crect x='510' y='85' width='3.5' height='215' rx='1.75'/%3E%3Cellipse cx='516' cy='73' rx='12' ry='19' transform='rotate(15 516 73)'/%3E%3Crect x='590' y='55' width='4' height='245' rx='2'/%3E%3Cellipse cx='584' cy='43' rx='10' ry='17' transform='rotate(-12 584 43)'/%3E%3Crect x='670' y='75' width='3.5' height='225' rx='1.75'/%3E%3Cellipse cx='676' cy='63' rx='11' ry='18' transform='rotate(10 676 63)'/%3E%3Crect x='740' y='50' width='4' height='250' rx='2'/%3E%3Cellipse cx='734' cy='38' rx='9' ry='16' transform='rotate(-16 734 38)'/%3E%3C/g%3E%3C/svg%3E") repeat-x bottom / 800px auto;
  pointer-events: none;
}

/* PROIECTE - Water lily / circular ripples */
#page-proiecte .page-section {
  background:
    radial-gradient(circle at 10% 90%, rgba(26,107,60,0.12) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(26,107,60,0.10) 0%, transparent 35%),
    radial-gradient(circle at 50% 50%, rgba(201,149,43,0.08) 0%, transparent 45%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'%3E%3Ccircle cx='100' cy='500' r='80' fill='none' stroke='%231a6b3c' stroke-width='1.5' opacity='0.15'/%3E%3Ccircle cx='100' cy='500' r='120' fill='none' stroke='%231a6b3c' stroke-width='1' opacity='0.10'/%3E%3Ccircle cx='100' cy='500' r='160' fill='none' stroke='%231a6b3c' stroke-width='0.6' opacity='0.06'/%3E%3Ccircle cx='500' cy='100' r='60' fill='none' stroke='%231a6b3c' stroke-width='1.5' opacity='0.15'/%3E%3Ccircle cx='500' cy='100' r='100' fill='none' stroke='%231a6b3c' stroke-width='1' opacity='0.10'/%3E%3Ccircle cx='500' cy='100' r='140' fill='none' stroke='%231a6b3c' stroke-width='0.6' opacity='0.06'/%3E%3Ccircle cx='300' cy='300' r='40' fill='none' stroke='%23c9952b' stroke-width='1.2' opacity='0.12'/%3E%3Ccircle cx='300' cy='300' r='70' fill='none' stroke='%23c9952b' stroke-width='0.8' opacity='0.08'/%3E%3Ccircle cx='300' cy='300' r='100' fill='none' stroke='%23c9952b' stroke-width='0.5' opacity='0.05'/%3E%3C/svg%3E") no-repeat center / cover,
    linear-gradient(170deg, #ffffff 0%, #e8f5ed 50%, #d8eddf 100%);
}

/* DONEAZA - Warm sunset over water */
#page-doneaza .page-section {
  background:
    linear-gradient(180deg,
      #ffffff 0%,
      #fff3dc 25%,
      #fce8c3 55%,
      #f8dca8 100%);
  position: relative;
  overflow: hidden;
}

#page-doneaza .page-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 150'%3E%3Cpath fill='%23c9952b' fill-opacity='0.15' d='M0,80L60,85C120,90,240,100,360,96C480,92,600,72,720,64C840,56,960,64,1080,72C1200,80,1320,88,1380,92L1440,96L1440,150L1380,150C1320,150,1200,150,1080,150C960,150,840,150,720,150C600,150,480,150,360,150C240,150,120,150,60,150L0,150Z'/%3E%3Cpath fill='%23c9952b' fill-opacity='0.10' d='M0,112L60,108C120,104,240,96,360,96C480,96,600,104,720,108C840,112,960,112,1080,108C1200,104,1320,96,1380,92L1440,88L1440,150L1380,150C1320,150,1200,150,1080,150C960,150,840,150,720,150C600,150,480,150,360,150C240,150,120,150,60,150L0,150Z'/%3E%3C/svg%3E") no-repeat bottom / 100% auto;
  pointer-events: none;
}

/* VOLUNTARIAT - Birds in flight silhouettes */
#page-voluntariat .page-section {
  background:
    linear-gradient(180deg, #dce9f3 0%, #e8eff6 40%, #f2f6fa 100%);
  position: relative;
  overflow: hidden;
}

#page-voluntariat .page-section::before {
  content: '';
  position: absolute;
  top: 30px;
  right: 20px;
  width: 500px;
  height: 250px;
  opacity: 0.20;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 250'%3E%3Cg fill='%231a4a6b' stroke='%231a4a6b' stroke-width='1'%3E%3Cpath d='M60,120 Q75,95 90,115' fill='none'/%3E%3Cpath d='M60,120 Q75,100 90,115' fill='none'/%3E%3Cpath d='M150,80 Q170,50 190,75' fill='none'/%3E%3Cpath d='M150,80 Q170,55 190,75' fill='none'/%3E%3Cpath d='M250,100 Q268,72 285,95' fill='none'/%3E%3Cpath d='M250,100 Q268,77 285,95' fill='none'/%3E%3Cpath d='M110,150 Q125,128 140,145' fill='none'/%3E%3Cpath d='M110,150 Q125,133 140,145' fill='none'/%3E%3Cpath d='M340,65 Q360,35 380,60' fill='none'/%3E%3Cpath d='M340,65 Q360,40 380,60' fill='none'/%3E%3Cpath d='M200,55 Q212,38 225,52' fill='none'/%3E%3Cpath d='M200,55 Q212,42 225,52' fill='none'/%3E%3Cpath d='M400,90 Q415,68 430,85' fill='none'/%3E%3Cpath d='M400,90 Q415,73 430,85' fill='none'/%3E%3Cpath d='M300,130 Q312,115 325,128' fill='none'/%3E%3Cpath d='M300,130 Q312,118 325,128' fill='none'/%3E%3Cpath d='M440,50 Q450,38 460,48' fill='none'/%3E%3Cpath d='M440,50 Q450,40 460,48' fill='none'/%3E%3C/g%3E%3C/svg%3E") no-repeat center / contain;
  pointer-events: none;
}

/* BLOG - Morning mist on delta channels */
#page-blog .page-section {
  background:
    radial-gradient(ellipse at 0% 100%, rgba(26,74,107,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 0%, rgba(26,74,107,0.08) 0%, transparent 40%),
    linear-gradient(180deg,
      #dce7ef 0%,
      #e4ecf2 30%,
      #edf2f6 60%,
      #f5f8fb 100%);
  position: relative;
  overflow: hidden;
}

#page-blog .page-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(0deg, rgba(26,74,107,0.08) 0%, transparent 100%);
  pointer-events: none;
}

/* CONTACT - Concentric water ripples */
#page-contact .page-section {
  background:
    radial-gradient(circle at 80% 80%, rgba(26,107,60,0.10) 0%, transparent 30%),
    radial-gradient(circle at 20% 20%, rgba(26,107,60,0.08) 0%, transparent 25%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600'%3E%3Cg fill='none' stroke='%231a6b3c'%3E%3Ccircle cx='650' cy='450' r='30' stroke-width='2' opacity='0.15'/%3E%3Ccircle cx='650' cy='450' r='60' stroke-width='1.5' opacity='0.12'/%3E%3Ccircle cx='650' cy='450' r='90' stroke-width='1' opacity='0.08'/%3E%3Ccircle cx='650' cy='450' r='120' stroke-width='0.8' opacity='0.05'/%3E%3Ccircle cx='650' cy='450' r='150' stroke-width='0.5' opacity='0.03'/%3E%3Ccircle cx='150' cy='150' r='25' stroke-width='1.5' opacity='0.12'/%3E%3Ccircle cx='150' cy='150' r='50' stroke-width='1' opacity='0.08'/%3E%3Ccircle cx='150' cy='150' r='75' stroke-width='0.8' opacity='0.05'/%3E%3Ccircle cx='150' cy='150' r='100' stroke-width='0.5' opacity='0.03'/%3E%3C/g%3E%3C/svg%3E") no-repeat center / cover,
    linear-gradient(160deg, #ffffff 0%, #e8f5ed 50%, #d8eddf 100%);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green1) 0%, var(--blue) 50%, var(--green2) 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 75%, rgba(255,255,255,0.04) 0%, transparent 50%),
              radial-gradient(circle at 85% 25%, rgba(255,255,255,0.05) 0%, transparent 50%),
              radial-gradient(circle at 50% 90%, rgba(255,255,255,0.03) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 3rem 1.5rem;
  max-width: 700px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--gold);
  margin-top: 0.75rem;
  font-style: italic;
  letter-spacing: 0.04em;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-top: 1rem;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  transition: all 0.2s;
  border: none;
  text-align: center;
}

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

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

.btn-outline {
  color: var(--white);
  background: transparent;
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
}

/* ===== STATS ===== */
.stats-section {
  background: var(--green1);
  padding: 3rem 1.5rem;
}

.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.stat-card {
  padding: 1.5rem 1rem;
}

.stat-icon {
  font-size: 2rem;
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  margin-top: 0.25rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* ===== SECTIONS ===== */
.section {
  padding: 4rem 1.5rem;
  background: var(--white);
}

.page-section {
  padding: 4rem 1.5rem;
  background: var(--white);
  min-height: 500px;
}

.container {
  max-width: 960px;
  margin: 0 auto;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green1);
  text-align: center;
  margin-bottom: 0.5rem;
}

.page-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green1);
  margin-bottom: 0.5rem;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 2rem;
  border-radius: 2px;
}

.sub-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green2);
  margin: 2rem 0 1rem;
}

.mission-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.body-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 1rem;
}

/* ===== MISSION GRID ===== */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0.75rem;
}

.mission-card {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--green4);
  border-radius: 8px;
  font-size: 0.92rem;
  line-height: 1.6;
  border-left: 3px solid var(--green2);
  align-items: flex-start;
}

.bullet {
  color: var(--green2);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== VALUE CARDS ===== */
.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.value-card {
  background: var(--green4);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
}

.value-icon {
  font-size: 2rem;
}

.value-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green1);
  margin: 0.75rem 0 0.5rem;
}

.value-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== PROJECT GRID ===== */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.project-card {
  background: var(--green4);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  border-top: 4px solid var(--green2);
}

.project-icon {
  font-size: 2.5rem;
}

.project-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green1);
  margin: 0.75rem 0 0.5rem;
}

.project-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== DONATE ===== */
.donate-box {
  background: linear-gradient(135deg, var(--green4), var(--white));
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 2rem;
  border: 1px solid var(--light-gray);
}

.donate-heart {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.donate-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green1);
  margin-bottom: 1rem;
}

.bank-details {
  margin-bottom: 2rem;
}

.bank-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green1);
  margin-bottom: 1rem;
}

.bank-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  padding: 1.5rem;
  border-radius: 12px;
  line-height: 1.8;
  font-size: 0.95rem;
}

.iban {
  font-family: 'Courier New', monospace;
  font-weight: 600;
  color: var(--green1);
  letter-spacing: 0.05em;
}

.redirect-box {
  background: var(--green4);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 2px dashed var(--green2);
}

.redirect-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green1);
  margin-bottom: 1rem;
}

/* ===== VOLUNTARIAT ===== */
.vol-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.vol-card {
  background: var(--green4);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
}

.vol-icon {
  font-size: 2rem;
}

.vol-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green1);
  margin: 0.5rem 0 0.25rem;
}

.vol-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== BLOG ===== */
/* ===== BLOG ===== */
.blog-img-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.blog-img-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--light-gray);
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-img-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

.blog-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-img-card:hover .blog-img-wrap img {
  transform: scale(1.05);
}

.blog-img-body {
  padding: 1.25rem;
}

.blog-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1rem;
}

.blog-card {
  background: var(--cream);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--green2);
  transition: transform 0.2s;
}

.blog-card:hover {
  transform: translateX(4px);
}

.blog-date {
  font-size: 0.78rem;
  color: var(--green3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.blog-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green1);
  margin: 0.5rem 0;
}

.blog-excerpt {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.blog-link {
  font-size: 0.85rem;
  color: var(--green2);
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s;
}

.blog-link:hover {
  color: var(--green1);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.contact-subtitle {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green1);
  margin-bottom: 1rem;
}

.contact-item {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.social-icon {
  font-size: 0.85rem;
  color: var(--green2);
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s;
}

.social-icon:hover {
  color: var(--green1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-input {
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  font-family: inherit;
  outline: none;
  background: var(--cream);
  transition: border-color 0.2s;
  width: 100%;
}

.form-input:focus {
  border-color: var(--green2);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* ===== PROJECT STATS ===== */
.project-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 2rem 1rem;
  background: var(--green1);
  border-radius: 12px;
  text-align: center;
}

.pstat-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.pstat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  margin-top: 0.25rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* ===== CUM TE POTI IMPLICA ===== */
.implica-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.implica-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.implica-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.implica-icon {
  font-size: 2rem;
}

.implica-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green1);
  margin: 0.5rem 0 0.25rem;
}

.implica-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.team-card {
  text-align: center;
  padding: 2rem 1rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.82rem;
  color: var(--green2);
  font-weight: 600;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ===== ATELIER TAGS ===== */
.year-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--light-gray);
}

.year-tab {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray);
  background: var(--cream);
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.year-tab:hover {
  border-color: var(--green2);
  color: var(--green2);
}

.year-tab.active {
  background: var(--green2);
  color: var(--white);
  border-color: var(--green2);
}

.year-count {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(255,255,255,0.25);
  padding: 0.1rem 0.4rem;
  border-radius: 10px;
  margin-left: 0.25rem;
}

.year-tab.active .year-count {
  background: rgba(255,255,255,0.3);
}

.year-panel {
  display: none;
}

.year-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

.atelier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem;
}

.atelier-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  transition: all 0.2s;
  border-left: 3px solid var(--green2);
}

.atelier-card:hover {
  background: var(--green4);
  border-left-color: var(--gold);
  transform: translateX(3px);
}

.ac-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.ac-title {
  font-size: 0.85rem;
  color: var(--dark);
  font-weight: 500;
  line-height: 1.4;
}

.atelier-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.atelier-tag {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  background: var(--green4);
  color: var(--green1);
  border-radius: 20px;
  border: 1px solid rgba(26,107,60,0.15);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.4;
}

/* ===== VOLUNTARIAT FORM ===== */
.vol-form-wrap {
  max-width: 500px;
  margin: 1rem auto 0;
}

.vol-form-wrap select.form-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1,1 L6,6 L11,1' stroke='%23555' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* ===== TIMELINE / RAPOARTE ===== */
.timeline {
  position: relative;
  padding-left: 30px;
  margin-top: 1.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--green2), var(--gold));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 0.75rem;
  cursor: pointer;
}

.timeline-dot {
  position: absolute;
  left: -26px;
  top: 14px;
  width: 13px;
  height: 13px;
  background: var(--green2);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--green2);
  z-index: 1;
  transition: background 0.2s, transform 0.2s;
}

.timeline-item:hover .timeline-dot,
.timeline-item.open .timeline-dot {
  background: var(--gold);
  box-shadow: 0 0 0 2px var(--gold);
  transform: scale(1.2);
}

.timeline-card {
  background: var(--cream);
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.timeline-item:hover .timeline-card,
.timeline-item.open .timeline-card {
  border-color: var(--green2);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.25rem;
}

.timeline-year {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green1);
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.timeline-toggle {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green2);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green4);
  transition: transform 0.3s, background 0.2s;
  flex-shrink: 0;
}

.timeline-item.open .timeline-toggle {
  transform: rotate(45deg);
  background: var(--green2);
  color: var(--white);
}

.timeline-body {
  display: none;
  padding: 0 1.25rem 1rem;
}

.timeline-item.open .timeline-body {
  display: block;
}

.timeline-body p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.btn-download {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green1);
  background: var(--green4);
  border: 1px solid var(--green2);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-download:hover {
  background: var(--green2);
  color: var(--white);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--green1);
  color: var(--white);
  padding: 3rem 1.5rem 0;
  margin-top: auto;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.footer-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .menu-btn {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--light-gray);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .nav.open {
    display: flex;
  }

  .nav-item {
    padding: 0.75rem 1rem;
    width: 100%;
    text-align: left;
    font-size: 0.85rem;
  }

  .hero {
    min-height: 400px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    height: 64px;
  }

  .page-section,
  .section {
    padding: 2.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .stat-num {
    font-size: 1.6rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
}
