/* ============================================================
   ZAKA Tel Aviv — Sponsor a Motorcycle
   Brand: blue + red + white (from the logo). Light, compact.
   ============================================================ */

:root {
  --blue: #3629EB;          /* logo royal blue (primary) */
  --blue-dark: #241CB0;
  --navy: #141663;          /* deep blue for dark bands / footer */
  --red: #D7082A;           /* logo red (accent / progress) */
  --red-dark: #B0061F;

  --ink: #15183A;           /* dark navy text (not black) */
  --muted: #5A6178;
  --line: #E3E7F3;
  --paper: #FFFFFF;
  --paper-2: #F4F6FD;       /* light blue-gray */

  --maxw: 1120px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 16px 44px rgba(20, 22, 99, 0.14);
  --shadow-sm: 0 6px 18px rgba(20, 22, 99, 0.10);

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
a { color: var(--blue); }
h1, h2, h3, h4 { margin: 0 0 .4em; line-height: 1.05; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 800px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-weight: 700; font-size: .98rem; letter-spacing: .01em;
  text-decoration: none; padding: .8em 1.5em; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .12s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--solid { background: var(--red); color: #fff; }          /* primary = donate (red) */
.btn--solid:hover { background: var(--red-dark); }
.btn--blue { background: var(--blue); color: #fff; }
.btn--blue:hover { background: var(--blue-dark); }
.btn--outline { background: #fff; color: var(--blue); border-color: var(--line); }
.btn--outline:hover { border-color: var(--blue); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }  /* on dark/photo */
.btn--ghost:hover { border-color: #fff; }
.btn--lg { font-size: 1.05rem; padding: .95em 1.8em; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; }
.brand__logo { height: 64px; width: 64px; object-fit: contain; }
.site-nav { display: flex; gap: 26px; margin-left: auto; font-weight: 600; font-size: .94rem; }
.site-nav a { color: var(--ink); text-decoration: none; transition: color .15s; }
.site-nav a:hover { color: var(--blue); }
.header-cta { padding: .55em 1.3em; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 84vh; display: flex; align-items: center;
  color: #fff; overflow: hidden; background: var(--navy);
}
.hero__media {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(15,17,80,.94) 0%, rgba(20,22,99,.80) 45%, rgba(33,30,160,.50) 100%),
    url('assets/hero.jpg');
  background-size: cover; background-position: center 28%;
}
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(13,15,60,.6) 100%); }
.hero__inner {
  position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding: 56px 24px; display: grid; grid-template-columns: 1.3fr .9fr; gap: 44px; align-items: center;
}
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: .8rem; font-weight: 800; color: #fff; margin: 0 0 16px; }
.eyebrow .dot { color: var(--red); }
.hero__kicker {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .5em 1.1em;
  border-radius: 999px;
  margin-bottom: 16px;
}
.hero__title {
  font-family: var(--font-display); font-size: clamp(2.8rem, 6.4vw, 5.4rem);
  text-transform: uppercase; line-height: .92; margin: 0 0 20px;
}
.hero__lead { font-size: 1.15rem; color: #e6e8f5; max-width: 38ch; margin: 0 0 26px; }
.hero__lead strong { color: #fff; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }

.trust-stats { list-style: none; display: flex; gap: 28px; padding: 0; margin: 0; }
.trust-stats li { display: flex; flex-direction: column; }
.trust-stats__num { font-family: var(--font-display); font-size: 1.8rem; color: #fff; line-height: 1; }
.trust-stats__num span { color: var(--red); }
.trust-stats__label { font-size: .78rem; color: #b9bce0; text-transform: uppercase; letter-spacing: .08em; }

/* Progress card */
.progress-card { background: #fff; color: var(--ink); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow); }
.progress-card__amounts { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.progress-card__raised { font-family: var(--font-display); font-size: 2.6rem; line-height: 1; color: var(--navy); }
.progress-card__goal { color: var(--muted); font-size: .98rem; }
.progress-card__goal strong { color: var(--ink); }
.thermo { position: relative; height: 16px; background: #E7EAF6; border-radius: 999px; overflow: hidden; margin: 16px 0 12px; }
.thermo__fill { position: absolute; left: 0; top: 0; bottom: 0; width: 0%; background: linear-gradient(90deg, var(--red-dark), var(--red)); border-radius: 999px; transition: width 1.1s cubic-bezier(.16,1,.3,1); }
.progress-card__meta { display: flex; justify-content: space-between; font-size: .92rem; color: var(--muted); margin-bottom: 18px; }
.progress-card__meta strong { color: var(--ink); }
.progress-card__secure { display: flex; align-items: center; gap: 7px; margin: 14px 0 0; font-size: .8rem; color: var(--muted); }
.progress-card__secure svg { color: var(--blue); flex-shrink: 0; }
.progress-card__link { display: inline-block; margin-top: 12px; font-size: .85rem; font-weight: 600; color: var(--blue); text-decoration: none; }
.progress-card__link:hover { text-decoration: underline; }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section--alt { background: var(--paper-2); }
.section--blue { background: var(--navy); color: #fff; }
.section--blue .section__title { color: #fff; }

.section__eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: .8rem; font-weight: 800; color: var(--blue); margin: 0 0 12px; }
.section--blue .section__eyebrow { color: #fff; }
.section__title { font-family: var(--font-display); font-size: clamp(1.7rem, 3.4vw, 2.7rem); text-transform: uppercase; color: var(--ink); max-width: 24ch; }
.lead { font-size: 1.12rem; max-width: 60ch; color: var(--muted); }
.lead--center { margin: 0 auto 6px; text-align: center; }
.lead strong { color: var(--ink); }

/* Need (compact) */
.need-quote {
  font-family: var(--font-display); text-transform: uppercase; line-height: 1.08;
  font-size: clamp(1.4rem, 3vw, 2.2rem); color: var(--ink); max-width: 20ch;
  border-left: 5px solid var(--red); padding-left: 20px; margin: 0 0 18px;
}
.need-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
.need-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.need-item h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.1rem; color: var(--blue); }
.need-item p { margin: 0; color: var(--muted); font-size: .96rem; }
.need-tag { font-size: .9rem; color: var(--red); font-weight: 700; }

/* Motorcycle */
.compare-img { margin: 6px auto 30px; max-width: 720px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: #fff; }
.compare-img img { width: 100%; height: auto; display: block; }
.spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 0 0 26px; }
.spec { background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--blue); border-radius: var(--radius); padding: 22px 18px; text-align: center; box-shadow: var(--shadow-sm); }
.spec h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.1rem; color: var(--ink); }
.spec p { margin: 0; color: var(--muted); font-size: .92rem; }
.spec strong { color: var(--red); }
.equipment { text-align: center; }
.equipment__sub { color: var(--muted); margin: 0 0 14px; }
.equipment__sub strong { color: var(--ink); }
.equipment__list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.equipment__list li { background: #EAF0FF; border: 1px solid #d4defc; color: var(--blue); padding: 7px 15px; border-radius: 999px; font-size: .9rem; font-weight: 600; }

/* Coverage band */
.coverage { text-align: center; }
.coverage__line { font-size: 1.2rem; max-width: 70ch; margin: 0 auto; color: #eef0ff; }
.coverage__line strong { color: #fff; }
.coverage__tags { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }
.coverage__tags span { border: 1px solid rgba(255,255,255,.35); border-radius: 999px; padding: 7px 16px; font-size: .9rem; font-weight: 600; }

/* Give / tiers */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 30px 0 36px; }
.tier {
  display: block; width: 100%; font-family: inherit;
  background: #fff; border: 2px solid var(--line); border-radius: var(--radius);
  padding: 24px; text-align: center; box-shadow: var(--shadow-sm);
  cursor: pointer; transition: transform .12s ease, border-color .15s ease, box-shadow .15s ease;
}
.tier:hover { transform: translateY(-3px); border-color: var(--blue); }
.tier:focus-visible { outline: 3px solid rgba(54,41,235,.4); outline-offset: 2px; }
.tier.is-active { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(54,41,235,.18), var(--shadow-sm); }
.tier__label { display: block; text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; color: var(--muted); }
.tier__amount { display: block; font-family: var(--font-display); font-size: 2.1rem; color: var(--blue); margin: 6px 0 8px; }
.tier__note { display: block; color: var(--muted); font-size: .92rem; }

.classy-wrap { max-width: 720px; margin: 0 auto; }
.classy-embed { background: #fff; border-radius: var(--radius-lg); min-height: 320px; box-shadow: var(--shadow); overflow: hidden; }
.classy-embed__hint { text-align: center; font-size: .85rem; color: var(--muted); margin-top: 16px; }
.classy-embed__hint a { color: var(--blue); }

/* Donor wall (supporters page) */
.donor-wall { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 30px 0 0; }
.donor-card { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow-sm); animation: fadeInUp .5s ease both; }
.donor-card--new { border-color: var(--red); box-shadow: 0 0 0 2px rgba(215,8,42,.12); }
.donor-card__avatar { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--blue); color: #fff; font-family: var(--font-display); font-size: 1.1rem; display: grid; place-items: center; }
.donor-card__body { min-width: 0; }
.donor-card__top { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.donor-card__name { font-weight: 700; color: var(--ink); }
.donor-card__amount { color: var(--red); font-weight: 700; }
.donor-card__time { font-size: .8rem; color: var(--muted); }
.donor-card__comment { margin: 4px 0 0; font-size: .92rem; color: #4a5066; font-style: italic; }
.donor-wall__loading { grid-column: 1 / -1; text-align: center; color: var(--muted); }
.donor-wall__more { display: block; margin: 26px auto 0; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* Sub-page hero (supporters) */
.subhero { background: var(--navy); color: #fff; padding: 64px 0 40px; text-align: center; }
.subhero .section__title { color: #fff; }
.subhero__back { display: inline-block; margin-bottom: 16px; color: #c4c7ee; text-decoration: none; font-weight: 600; font-size: .9rem; }
.subhero__back:hover { color: #fff; }
.subhero .thermo { max-width: 520px; margin: 22px auto 10px; }
.subhero__stats { color: #c4c7ee; font-size: .95rem; }
.subhero__stats strong { color: #fff; }

/* Footer */
.site-footer { background: var(--navy); color: #c7caec; padding: 56px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; }
.footer-logo { height: 52px; width: 52px; object-fit: contain; margin-bottom: 12px; }
.footer-brand p { color: #b9bce0; max-width: 34ch; }
.footer-col h4 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; color: #fff; font-size: 1.05rem; }
.footer-col p { margin: .35em 0; }
.footer-col a { color: #fff; text-decoration: none; }
.footer-col a:hover { text-decoration: underline; }
.footer-legal { margin: 38px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); text-align: center; font-size: .9rem; color: #dfe1f5; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 14px; padding-top: 14px; font-size: .82rem; color: #9da1cf; }

/* Sticky mobile donate */
.sticky-donate { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60; display: none; align-items: center; justify-content: space-between; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px 12px 18px; color: var(--ink); text-decoration: none; font-weight: 700; box-shadow: var(--shadow); }
.sticky-donate__btn { background: var(--red); color: #fff; padding: .55em 1.1em; border-radius: 999px; font-weight: 700; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; gap: 26px; padding: 70px 22px 44px; }
  .progress-card { order: -1; }
  .site-nav { display: none; }
  .need-row, .spec-grid, .tiers, .donor-wall { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .sticky-donate { display: flex; }
  .header-cta { display: none; }
  body { padding-bottom: 76px; }           /* clears the fixed mobile donate bar */
}

/* Phones */
@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .site-header { padding: 10px 16px; gap: 14px; }
  .brand__logo { height: 52px; width: 52px; }
  .section { padding: 46px 0; }

  .hero__inner { padding: 64px 18px 40px; }
  .hero__title { font-size: clamp(2.6rem, 13vw, 3.6rem); }
  .hero__lead { font-size: 1.06rem; }
  .hero__cta { gap: 10px; }
  .hero__cta .btn { flex: 1 1 100%; }       /* full-width, easy-tap CTAs */
  .trust-stats { gap: 16px; flex-wrap: wrap; }
  .trust-stats__num { font-size: 1.6rem; }

  .progress-card { padding: 22px; }
  .progress-card__raised { font-size: 2.2rem; }

  .section__title { font-size: clamp(1.6rem, 7vw, 2.1rem); }
  .spec-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .spec { padding: 18px 12px; }
  .coverage__line { font-size: 1.05rem; }
  .tier { padding: 20px; }
  .tier__amount { font-size: 1.9rem; }

  .footer-bottom { flex-direction: column; }
  .sticky-donate { left: 10px; right: 10px; bottom: 10px; padding: 11px 12px 11px 16px; font-size: .95rem; }
}

/* Small phones */
@media (max-width: 380px) {
  .spec-grid { grid-template-columns: 1fr; }
  .trust-stats { gap: 14px; }
  .trust-stats__num { font-size: 1.4rem; }
  .sticky-donate span:first-child { font-size: .88rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .thermo__fill { transition: none; }
  .donor-card { animation: none; }
  .btn:hover { transform: none; }
}
