/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --cream:       #FAF7F2;
  --warm-white:  #FFFFFF;
  --teal:        #2A7C7C;
  --teal-light:  #3D9E9E;
  --amber:       #D4882A;
  --amber-light: #F0A94A;
  --text-dark:   #2C2C2C;
  --text-muted:  #6B6B6B;
  --card-bg:     #F5F0E8;
  --font-h: 'Lora', Georgia, serif;
  --font-b: 'Source Sans 3', system-ui, sans-serif;
  --ease: all 0.3s ease;
  --sh-sm: 0 2px 10px rgba(0,0,0,.07);
  --sh-md: 0 4px 20px rgba(0,0,0,.11);
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); background: var(--cream); color: var(--text-dark); line-height: 1.7; overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { font-family: var(--font-b); cursor: pointer; }

/* ── Scroll animations ──────────────────────────────────────── */
.fi   { opacity: 0; transform: translateY(28px);  transition: opacity .7s ease, transform .7s ease; }
.fi-l { opacity: 0; transform: translateX(-28px); transition: opacity .7s ease, transform .7s ease; }
.fi-r { opacity: 0; transform: translateX(28px);  transition: opacity .7s ease, transform .7s ease; }
.fi.on, .fi-l.on, .fi-r.on { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-h); line-height: 1.25; }
h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
section    { padding: 5rem 0; }

/* ── Section meta ───────────────────────────────────────────── */
.s-tag {
  display: inline-block; font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal); background: rgba(42,124,124,.1);
  padding: .3rem .85rem; border-radius: 50px; margin-bottom: .9rem;
}
.s-bar {
  width: 52px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  margin: .9rem 0 2rem;
}
.s-bar.center { margin-left: auto; margin-right: auto; }
.s-sub { color: var(--text-muted); max-width: 520px; font-size: 1.05rem; }
.s-sub.center { margin: 0 auto; text-align: center; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .85rem 1.75rem; border-radius: 50px;
  font-size: .97rem; font-weight: 700; border: 2px solid transparent;
  transition: var(--ease); white-space: nowrap;
}
.btn-primary {
  background: var(--teal); color: #fff; border-color: var(--teal);
}
.btn-primary:hover { background: var(--teal-light); border-color: var(--teal-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(42,124,124,.3); }

.btn-ghost {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.7);
}
.btn-ghost:hover { background: #fff; color: var(--teal); transform: translateY(-2px); }

.btn-amber { background: var(--amber); color: #fff; }
.btn-amber:hover { background: var(--amber-light); transform: translateY(-2px); }

.btn-donate {
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  color: #fff;
  animation: pulse 2.8s ease-in-out infinite;
}
.btn-donate:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(212,136,42,.5); animation: none; }

@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(212,136,42,.4); }
  50%      { box-shadow: 0 0 0 14px rgba(212,136,42,0); }
}

.btn-music {
  background: #49949F; color: #fff; border-color: #49949F;
}
.btn-music:hover { background: #3a7a85; border-color: #3a7a85; transform: translateY(-2px); }
.music-notes { display: inline-flex; align-items: baseline; gap: 1px; font-size: 1em; line-height: 1; }
.mn { display: inline-block; animation: noteBounce 1.4s ease-in-out infinite; }
.mn1 { animation-delay: 0s; }
.mn2 { animation-delay: 0.18s; }
.mn3 { animation-delay: 0.36s; }
@keyframes noteBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30%            { transform: translateY(-4px); }
}

.btn-sm { padding: .55rem 1.2rem; font-size: .88rem; }
.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */
#nav {
  position: sticky; top: 0; z-index: 900;
  background: rgba(250,247,242,.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42,124,124,.08);
  transition: box-shadow .3s;
}
#nav.scrolled { box-shadow: var(--sh-sm); }

.nav-row {
  display: flex; align-items: center; justify-content: space-between; height: 68px;
}
.nav-logo {
  font-family: var(--font-h); font-size: 1.45rem; font-weight: 700;
  color: var(--teal); letter-spacing: -.02em;
}
.nav-logo span { color: var(--amber); }

@keyframes breathe {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.hero-lung {
  display: block;
  margin: 2.5rem auto 0;
  max-width: 530px;
  width: 100%;
  filter: drop-shadow(0 4px 16px rgba(42,124,124,0.35)) drop-shadow(0 0 8px rgba(212,136,42,0.3));
  animation: breathe 4s ease-in-out infinite;
}

.nav-links { display: flex; gap: 1.75rem; align-items: center; }
.nav-links li { list-style: none; }
.nav-links a {
  font-size: .93rem; font-weight: 600; color: var(--text-dark);
  position: relative; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--teal); transition: width .25s;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { width: 100%; }
.nav-links .nav-cta {
  background: var(--amber); color: #fff !important;
  padding: .45rem 1.1rem; border-radius: 50px;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: var(--amber-light); }

/* Language switch */
.nav-right {
  display: flex; align-items: center; gap: 8px;
}
.lang-sw {
  display: flex; gap: 4px; align-items: center;
}
.lang-btn {
  background: none; border: 2px solid rgba(42,124,124,.15);
  border-radius: 8px; padding: .15rem .3rem;
  line-height: 0; cursor: pointer; transition: var(--ease);
  opacity: .5; display: inline-flex; align-items: center;
}
.lang-btn img { width: 24px; height: 24px; display: block; }
.lang-btn.active { border-color: var(--teal); opacity: 1; box-shadow: 0 0 0 2px rgba(42,124,124,.2); }
.lang-btn:hover:not(.active) { border-color: var(--teal-light); opacity: .8; }

/* Hamburger */
.ham {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.ham span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: var(--ease); }
.ham.on span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.ham.on span:nth-child(2) { opacity: 0; }
.ham.on span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile overlay */
#mob {
  display: none; position: fixed;
  inset: 68px 0 0; background: var(--cream);
  z-index: 850; flex-direction: column; padding: 2rem 1.5rem; gap: 0;
}
#mob.on { display: flex; }
.mob-link {
  font-family: var(--font-h); font-size: 1.4rem; font-weight: 500;
  padding: 1rem 0; border-bottom: 1px solid rgba(42,124,124,.1);
  color: var(--text-dark); transition: color .2s;
}
.mob-link:hover { color: var(--teal); }
.mob-donate {
  margin-top: 1.5rem; background: linear-gradient(135deg, var(--amber), var(--amber-light));
  color: #fff; padding: 1rem; border-radius: 50px;
  font-weight: 700; text-align: center;
}
.mob-akcije {
  margin-top: .5rem; background: var(--teal);
  color: #fff; padding: 1rem; border-radius: 50px;
  font-weight: 700; text-align: center;
  border-bottom: none;
}
.mob-akcije:hover { background: var(--teal-light); }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: linear-gradient(140deg, #FAF7F2 0%, #FEF0DC 45%, #FBE3CA 75%, #F8D9BD 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 7rem 0 5rem;
}

.hero-motif {
  position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  width: min(520px, 55vw); opacity: .06; pointer-events: none;
}

.hero-body { position: relative; z-index: 1; max-width: 680px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 1.1rem;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--amber); border-radius: 2px; }

.hero-title { font-weight: 700; line-height: 1.15; margin-bottom: .6rem; color: var(--text-dark); }
.hero-title span { color: #E09638; }
.hero-title .ht-teal { color: #2A7C7C; }

.hero-name {
  font-family: var(--font-h); font-size: clamp(1rem,2vw,1.3rem);
  color: var(--amber); font-style: italic; margin-bottom: 1.3rem;
}
.hero-desc { font-size: 1.08rem; color: var(--text-muted); max-width: 480px; margin-bottom: 2.25rem; }

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-btns .btn { min-width: 11rem; justify-content: center; }

.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3rem;
  padding-top: 2rem; border-top: 1px solid rgba(42,124,124,.14);
  flex-wrap: wrap;
}
.hero-stats > div { text-align: center; }
.stat-n { font-family: var(--font-h); font-size: 1.7rem; font-weight: 700; color: var(--teal); display: block; }
.stat-l { font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════════
   STORY
══════════════════════════════════════════════════════════════ */
#prica { background: var(--warm-white); }

.story-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: center; }

.photo-frame {
  position: relative; border-radius: var(--r-lg);
  overflow: hidden; aspect-ratio: 3/4; max-width: 360px;
  border: 3px solid var(--amber-light);
  box-shadow: var(--sh-md);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.family-block { margin-top: 4rem; display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem; align-items: center; }
.photo-frame-family {
  position: relative; border-radius: var(--r-lg);
  overflow: hidden; width: 100%;
  border: 3px solid var(--amber-light);
  box-shadow: var(--sh-md);
}
.photo-frame-family img { width: 100%; height: auto; display: block; }
.family-text h3 { font-family: var(--font-h); font-size: clamp(1.2rem, 2.5vw, 1.6rem); color: var(--teal); margin-bottom: 1rem; }
.family-text p { color: var(--text-muted); font-size: .97rem; line-height: 1.75; margin-bottom: 1rem; }
.family-text p:last-child { margin-bottom: 0; }
@media (max-width: 900px) { .family-block { grid-template-columns: 1fr; gap: 2.5rem; } }

.pull-q {
  position: relative;
  background: rgba(0,201,85,.08);
  border-left: 4px solid #009253;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 1.2rem 1.5rem; margin: 1.5rem 0;
}
.pull-q p { font-family: var(--font-h); font-style: italic; color: #009253; font-size: 1.02rem; line-height: 1.6; }
.pull-q::before {
  content: '"'; font-family: var(--font-h); font-size: 4.5rem;
  color: #009253; opacity: .25; position: absolute; top: -14px; left: 8px; line-height: 1;
}

/* ══════════════════════════════════════════════════════════════
   HEALTH STATUS
══════════════════════════════════════════════════════════════ */
#zdravlje { background: var(--cream); }

.h-center { text-align: center; }

.timeline { position: relative; max-width: 780px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 24px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(var(--teal), var(--amber)); opacity: .25;
}

.tl-item { display: flex; gap: 1.75rem; margin-bottom: 1.4rem; }

.tl-dot {
  flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%;
  background: var(--warm-white); border: 3px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  z-index: 1; box-shadow: var(--sh-sm); color: var(--teal);
}

.tl-card {
  flex: 1; background: var(--warm-white); border-radius: var(--r-md);
  padding: 1.4rem 1.6rem; box-shadow: var(--sh-sm);
  border: 1px solid rgba(42,124,124,.08); transition: var(--ease);
}
.tl-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }

.tl-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: .4rem; margin-bottom: .7rem; }
.tl-date { font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--text-muted); }
.tl-card h4 { font-size: 1rem; margin-bottom: .4rem; }
.tl-card p  { font-size: .93rem; color: var(--text-muted); }
.tl-card strong { color: var(--text-dark); }

.badge {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .72rem; font-weight: 700; padding: .22rem .7rem;
  border-radius: 50px; letter-spacing: .03em;
}
.badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge-t { background: rgba(212,136,42,.12); color: var(--amber); }
.badge-s { background: rgba(42,124,124,.12); color: var(--teal); }
.badge-h { background: rgba(180,50,50,.1); color: #B43232; }

.health-note { text-align: center; margin-top: 2rem; font-size: .85rem; color: var(--text-muted); font-style: italic; }

/* ══════════════════════════════════════════════════════════════
   HOW TO HELP
══════════════════════════════════════════════════════════════ */
#kako-pomoci { background: var(--warm-white); }

.help-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

.help-card {
  background: var(--card-bg); border-radius: var(--r-md);
  padding: 2.25rem 1.75rem; text-align: center;
  border: 1px solid rgba(42,124,124,.1); transition: var(--ease);
}
.help-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: var(--teal-light); }
.help-icon { font-size: 2.6rem; display: block; margin-bottom: .9rem; }
.help-card h3 { margin-bottom: .5rem; }
.help-card p  { font-size: .94rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════
   DONATIONS
══════════════════════════════════════════════════════════════ */
#donacije { background: linear-gradient(140deg, #F5F0E8, var(--cream)); }

.don-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.pay-box {
  background: var(--warm-white); border-radius: var(--r-md);
  padding: 2rem; box-shadow: var(--sh-sm);
  border: 1px solid rgba(42,124,124,.1);
}
.pay-box h3 { font-size: 1.15rem; display: flex; align-items: center; gap: .5rem; margin-bottom: 1.5rem; color: var(--text-dark); }
.pay-inner-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 1.5rem; }
.pay-col-right { display: flex; flex-direction: column; gap: 1rem; }
@media (max-width: 860px) { .pay-inner-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
  .don-bottom { grid-template-columns: 1fr; }
  .poster-col { margin-top: 0 !important; }
}

.pay-row { margin-bottom: 1.1rem; }
.pay-label { font-size: .75rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .35rem; }
.pay-field {
  display: flex; align-items: center; gap: .6rem;
  background: var(--cream); border-radius: var(--r-sm);
  padding: .7rem 1rem; border: 1px solid rgba(42,124,124,.15);
}
.pay-val { flex: 1; font-family: 'Courier New', monospace; font-size: .93rem; font-weight: 700; letter-spacing: .04em; color: var(--text-dark); }

.copy-btn {
  background: none; border: none;
  display: flex; align-items: center; gap: .3rem;
  color: var(--teal); font-size: .78rem; font-weight: 700;
  padding: .25rem .5rem; border-radius: 5px; transition: var(--ease);
}
.copy-btn:hover { background: rgba(42,124,124,.1); }
.copy-btn.ok { color: #2E7D32; }

.pay-section-lbl {
  display: flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--warm-white);
  background: var(--teal); border-radius: var(--r-sm);
  padding: .35rem .85rem; margin: 1.25rem 0 .75rem;
}
.pay-section-lbl.eur { background: #1a5276; }
.pay-section-lbl.usd { background: #1a3a6b; }
.pay-section-lbl.tel { background: var(--amber); }

.swift-info {
  background: #EEF5FF; border: 1px solid rgba(0,80,180,.1);
  border-radius: var(--r-sm); padding: 1rem 1.2rem; margin-bottom: 1.1rem;
  font-size: .87rem; line-height: 1.65; color: var(--text-muted);
}
.swift-info strong { color: var(--text-dark); }

.tel-row {
  display: flex; align-items: center; gap: .6rem;
  background: var(--cream); border-radius: var(--r-sm);
  padding: .7rem 1rem; border: 1px solid rgba(42,124,124,.15);
  margin-bottom: .6rem;
}
.tel-row svg { color: var(--teal); flex-shrink: 0; }
.tel-link { font-family: 'Courier New', monospace; font-size: .97rem; font-weight: 700; color: var(--text-dark); letter-spacing: .04em; flex: 1; }
.tel-link:hover { color: var(--teal); text-decoration: underline; }

.paypal-field {
  display: flex; align-items: center; gap: .6rem;
  background: #EEF4FF; border-radius: var(--r-sm);
  padding: .7rem 1rem; border: 1px solid rgba(0,80,180,.12);
  margin-bottom: 1.1rem;
}
.pp-logo { font-size: .9rem; font-weight: 900; color: #003087; letter-spacing: -.01em; }
.pp-logo span { color: #009CDE; }

.qr-zone {
  background: var(--cream); border: 2px solid rgba(42,124,124,.2);
  border-radius: var(--r-md); padding: 1.5rem; text-align: center;
}
.qr-zone-title {
  font-family: var(--font-h); font-size: 1rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 1rem;
}
.qr-amounts {
  display: grid; grid-template-columns: repeat(4,1fr); gap: .4rem;
  margin-bottom: .75rem;
}
.qr-amt, .epc-amt, .usd-amt {
  padding: .45rem .25rem; border: 2px solid rgba(42,124,124,.2);
  border-radius: var(--r-sm); background: var(--warm-white);
  font-family: var(--font-b); font-size: .8rem; font-weight: 700;
  color: var(--text-dark); cursor: pointer; transition: var(--ease);
}
.qr-amt:hover, .epc-amt:hover, .usd-amt:hover { border-color: var(--teal); color: var(--teal); background: rgba(42,124,124,.06); }
.qr-amt.active, .epc-amt.active, .usd-amt.active { border-color: var(--teal); background: var(--teal); color: #fff; }
.qr-custom {
  display: flex; gap: .4rem; margin-bottom: 1.1rem;
}
.qr-custom input {
  flex: 1; padding: .5rem .75rem; border: 2px solid rgba(42,124,124,.2);
  border-radius: var(--r-sm); font-family: var(--font-b); font-size: .88rem;
  background: var(--warm-white); outline: none; color: var(--text-dark);
  -moz-appearance: textfield;
}
.qr-custom input::-webkit-outer-spin-button,
.qr-custom input::-webkit-inner-spin-button { -webkit-appearance: none; }
.qr-custom input:focus { border-color: var(--teal); }
.qr-custom button {
  padding: .5rem 1rem; background: var(--teal); color: #fff;
  border: none; border-radius: var(--r-sm); font-family: var(--font-b);
  font-weight: 700; cursor: pointer; transition: var(--ease); font-size: .88rem;
}
.qr-custom button:hover { background: var(--teal-light); }
#qr-canvas { margin: 0 auto .9rem; display: flex; justify-content: center; min-height: 164px; align-items: center; }
#qr-canvas img, #qr-canvas canvas { border-radius: 10px; border: 3px solid rgba(42,124,124,.15); }
.qr-amount-display {
  font-family: var(--font-h); font-size: 1.3rem; font-weight: 700;
  color: var(--teal); margin-bottom: .3rem;
}
.qr-lbl { font-size: .75rem; color: var(--text-muted); }
.qr-loading { font-size: .85rem; color: var(--text-muted); }

.collected-box {
  background: rgba(42,124,124,.07); border-radius: var(--r-md);
  padding: 1.6rem 2rem;
  border: 1px solid rgba(42,124,124,.15);
}
.collected-box h3 { font-family: var(--font-h); font-size: 1.05rem; color: var(--teal); margin-bottom: 1.1rem; display: flex; align-items: center; gap: .4rem; }
.collected-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .7rem; }
.collected-row { background: var(--warm-white); border-radius: var(--r-sm); padding: .75rem .9rem; border: 1px solid rgba(42,124,124,.12); display: flex; flex-direction: column; gap: .3rem; }
.collected-lbl { font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--text-muted); }
.collected-val { font-family: 'Courier New', monospace; font-weight: 700; color: var(--teal); font-size: 1rem; }
.collected-note { display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: .75rem; color: var(--text-muted); margin-top: .9rem; font-style: italic; flex-wrap: wrap; }
@media (max-width: 600px) { .collected-grid { grid-template-columns: 1fr; gap: 1rem; } .collected-row { padding: 1rem 1.2rem; } .collected-lbl { font-size: .78rem; } .collected-val { font-size: 1.15rem; } }

.transp {
  background: rgba(42,124,124,.07); border-radius: var(--r-sm);
  padding: 1rem 1.2rem; display: flex; align-items: flex-start;
  gap: .7rem; font-size: .88rem; line-height: 1.6; margin-bottom: 1.5rem;
}
.transp svg { flex-shrink: 0; color: var(--teal); margin-top: 2px; }

.quote-strip {
  background: var(--card-bg); border-radius: var(--r-sm);
  padding: 1.4rem 1.5rem; border-left: 3px solid var(--amber);
}
.quote-strip p:first-child { font-family: var(--font-h); font-style: italic; color: var(--teal); margin-bottom: .4rem; }
.quote-strip p:last-child  { font-size: .84rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
footer { background: var(--text-dark); color: rgba(255,255,255,.8); padding: 3.5rem 0 2rem; }

.foot-layout { display: flex; align-items: center; gap: 2.5rem; }
.foot-ribbon { width: 90px; flex-shrink: 0; filter: brightness(0) invert(1); opacity: .9; }
.foot-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.6rem; flex: 1; }
.foot-logo { font-family: var(--font-h); font-size: 1.5rem; font-weight: 700; color: #fff; }
.foot-logo span { color: var(--amber-light); }
.foot-thanks { font-size: 1rem; color: rgba(255,255,255,.65); max-width: 440px; line-height: 1.75; }
.foot-thanks strong { color: var(--amber-light); }

.social-row { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center; }
.soc-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .55rem 1.2rem; border-radius: 50px;
  font-size: .85rem; font-weight: 700; transition: var(--ease);
}
.soc-fb  { background: #1877F2; color: #fff; }
.soc-fb:hover  { background: #1565D0; transform: translateY(-2px); }
.soc-wa  { background: #25D366; color: #fff; }
.soc-wa:hover  { background: #1DB954; transform: translateY(-2px); }
.soc-x   { background: #0F0F0F; color: #fff; }
.soc-x:hover   { background: #333; transform: translateY(-2px); }
.soc-ig  { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.soc-ig:hover  { filter: brightness(1.12); transform: translateY(-2px); }

.foot-hr { width: 100%; height: 1px; background: rgba(255,255,255,.1); }

.foot-bottom { font-size: .78rem; color: rgba(255,255,255,.35); }
.foot-disc { font-size: .72rem; color: rgba(255,255,255,.28); max-width: 520px; line-height: 1.55; margin-top: .4rem; }

/* Story WP content: blockquote → pull-q (CSS fallback ako PHP regex ne uhvati) */
.story-content blockquote {
  position: relative;
  background: rgba(0,201,85,.08);
  border-left: 4px solid #009253;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 1.2rem 1.5rem; margin: 1.5rem 0;
}
.story-content blockquote p { font-family: var(--font-h); font-style: italic; color: #009253; font-size: 1.02rem; line-height: 1.6; margin-bottom: 0; }
.story-content blockquote::before {
  content: '"'; font-family: var(--font-h); font-size: 4.5rem;
  color: #009253; opacity: .25; position: absolute; top: -14px; left: 8px; line-height: 1;
}

/* ══════════════════════════════════════════════════════════════
   PAGE TEMPLATE (generic)
══════════════════════════════════════════════════════════════ */
.page-content {
  max-width: 780px; margin: 0 auto; padding: 5rem 1.5rem;
}
.page-content h1 { margin-bottom: 1.5rem; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .photo-frame { max-width: 280px; aspect-ratio: 3/4; margin: 0 auto; }
}
@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .nav-links { display: none; }
  .ham { display: flex; }
  .help-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .don-grid  { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
  .hero-stats { gap: 1.5rem 1rem; }
  .hero-stats > div { flex: 0 0 calc(50% - 0.5rem); }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  .social-row { flex-direction: column; align-items: stretch; }
  .soc-btn { justify-content: center; }
  .foot-layout { flex-direction: column; }
  .foot-ribbon { width: 70px; }
}


.foot-vc {
  display: inline-block;
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(42,124,124,.7);
  border-radius: 30px;
  padding: .45rem 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: .04em;
  box-shadow: 0 0 8px rgba(42,124,124,.7), 0 0 20px rgba(42,124,124,.35), inset 0 0 8px rgba(42,124,124,.1);
  text-shadow: 0 0 6px rgba(42,124,124,1), 0 0 14px rgba(42,124,124,.8), 0 0 28px rgba(42,124,124,.5);
  color: #a8f0e8;
}
.foot-vc [data-i18n] { font-size: .7rem; }

/* ══════════════════════════════════════════════════════════════
   NAV — AKCIJE LINK (desktop only)
══════════════════════════════════════════════════════════════ */
.nav-akcije-link {
  font-size: .93rem; font-weight: 700; color: #fff !important;
  background: var(--teal); padding: .45rem 1.1rem; border-radius: 50px;
  white-space: nowrap; transition: background .2s;
}
.nav-akcije-link::after { display: none; }
.nav-akcije-link:hover { background: var(--teal-light); }
@media (max-width: 768px) { .nav-akcije-link { display: none; } }

/* ══════════════════════════════════════════════════════════════
   AKCIJE PAGE
══════════════════════════════════════════════════════════════ */
#akcije-lista { background: var(--warm-white); }

.akcija-list {
  display: flex; flex-direction: column; gap: 2.5rem; margin-top: 3rem;
}

.akcija-card {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--card-bg); box-shadow: var(--sh-sm);
}

.akcija-media {
  background: #000;
  overflow: hidden; position: relative;
  display: flex; align-items: center;
}
.akcija-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.akcija-media video {
  width: 100%; height: auto; display: block;
}
.akcija-media-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .75rem; color: var(--teal); opacity: .45; padding: 2rem; text-align: center;
}
.akcija-media-placeholder span {
  font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
}

.akcija-info {
  padding: 2rem 2rem 2rem 1.75rem;
  display: flex; flex-direction: column; justify-content: center;
}
.akcija-card--reverse .akcija-info { padding: 2rem 1.75rem 2rem 2rem; }
.akcija-meta {
  display: flex; flex-wrap: wrap; gap: .4rem .6rem; margin-bottom: 1.25rem;
}
.akcija-meta-item {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .78rem; font-weight: 700; color: var(--teal);
  background: rgba(42,124,124,.1); padding: .25rem .7rem; border-radius: 50px;
}
.akcija-info h3 {
  font-family: var(--font-h); color: var(--text-dark);
  font-size: clamp(1.1rem, 2vw, 1.4rem); margin-bottom: .75rem;
}
.akcija-info p { color: var(--text-muted); line-height: 1.75; margin-bottom: .75rem; }
.akcija-info p:last-child { margin-bottom: 0; }

.akcija-details {
  display: flex; flex-direction: column; gap: .3rem;
  margin: 1rem 0; padding: .85rem 1rem;
  background: rgba(42,124,124,.07); border-left: 3px solid var(--teal);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.akcija-details span {
  font-weight: 700; color: var(--teal); font-size: .93rem;
}
.akcija-sign {
  font-family: var(--font-h); font-style: italic;
  color: var(--text-dark); font-size: 1rem;
}

.akcija-cta-row { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.share-wrap { position: relative; }
.btn-share-toggle {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem 1.2rem; border-radius: 50px;
  font-size: .88rem; font-weight: 700; font-family: inherit;
  background: #D4882B; color: #fff; border: 2px solid #D4882B; cursor: pointer;
  transition: background .2s, transform .2s, border-color .2s;
}
.btn-share-toggle:hover { background: #c07820; border-color: #c07820; transform: translateY(-1px); }
.share-menu {
  position: absolute; bottom: calc(100% + 8px); left: 0;
  background: #fff; border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15); padding: .4rem;
  min-width: 200px; display: none; flex-direction: column;
  z-index: 100; border: 1px solid rgba(0,0,0,.08);
}
.share-menu.open { display: flex; }
.share-menu-item {
  display: flex; align-items: center; gap: .65rem;
  padding: .5rem .65rem; border-radius: 8px;
  font-size: .86rem; font-weight: 600; color: #2c2c2c;
  text-decoration: none; background: none; border: none;
  cursor: pointer; transition: background .15s;
  text-align: left; width: 100%; font-family: inherit;
}
.share-menu-item:hover { background: #f5f5f5; }
.share-menu-icon {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.share-notif {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  background: #2c2c2c; color: #fff; padding: .65rem 1.25rem;
  border-radius: 50px; font-size: .88rem; font-weight: 600;
  z-index: 9999; animation: fadeInUp .3s ease; white-space: nowrap;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@media (max-width: 768px) {
  .akcija-card { grid-template-columns: 1fr; }
  .akcija-info { padding: 1.5rem; }
  .akcija-media video { width: 100%; max-width: 100%; height: auto; }
  .akcija-card--reverse .akcija-media { order: -1; }
}
