/* ==========================================================================
   כוכב חלל — גיליון סגנון ראשי
   עברית RTL · מובייל ראשון · נושא חלל כהה
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. טוקנים
   -------------------------------------------------------------------------- */
:root {
  /* צבעים — נגזרו מהפלייר הרשמי של העמותה */
  --bg:          #060911;
  --bg-2:        #0a1120;
  --surface:     #0f1a2e;
  --surface-2:   #142139;
  --line:        rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);

  --text:        #e9f0fa;
  --text-muted:  #9db0ca;
  --text-dim:    #6f83a0;

  --accent:      #5fb0e8;   /* הכחול של הלוגו */
  --accent-deep: #2c7fc0;
  --accent-glow: rgba(95, 176, 232, 0.28);
  --star:        #f0d98a;   /* זהב חמים — הדגשות כוכב */

  /* טיפוגרפיה */
  --font: "Heebo", "Assistant", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* מרווחים */
  --gap:      1rem;
  --gap-lg:   2rem;
  --section:  clamp(3.5rem, 9vw, 6rem);
  --wrap:     1120px;
  --wrap-narrow: 760px;

  /* צורה */
  --radius:    14px;
  --radius-lg: 20px;
  --shadow:    0 18px 45px rgba(0, 0, 0, 0.5);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------------------------
   2. איפוס ובסיס
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #8fcbf3; }

h1, h2, h3, h4 {
  margin: 0 0 0.6em;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 6vw, 3.25rem); }
h2 { font-size: clamp(1.55rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2.6vw, 1.4rem); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-inline-start: 1.4em; }
li { margin-bottom: 0.45em; }

/* מיקוד נראה לעין — נגישות מקלדת */
:focus-visible {
  outline: 3px solid var(--star);
  outline-offset: 3px;
  border-radius: 4px;
}

/* דילוג לתוכן */
.skip-link {
  position: fixed;
  inset-inline-start: 1rem;
  top: -100px;
  z-index: 999;
  padding: 0.75rem 1.25rem;
  background: var(--star);
  color: #10131c;
  font-weight: 700;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   3. פריסה
   -------------------------------------------------------------------------- */
.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: var(--section); }
.section--tight { padding-block: calc(var(--section) * 0.6); }

.section-head { margin-bottom: 2.5rem; }
.section-head p { color: var(--text-muted); max-width: 60ch; }

.eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.lead { font-size: 1.15rem; color: var(--text-muted); }

/* --------------------------------------------------------------------------
   4. כפתורים
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease),
              border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--donate {
  background: linear-gradient(135deg, var(--star), #dcbf65);
  color: #14100a;
  box-shadow: 0 8px 24px rgba(240, 217, 138, 0.22);
}
.btn--donate:hover { color: #14100a; box-shadow: 0 12px 30px rgba(240, 217, 138, 0.34); }

.btn--primary {
  background: var(--accent-deep);
  color: #fff;
  box-shadow: 0 8px 24px var(--accent-glow);
}
.btn--primary:hover { background: var(--accent); color: #06121e; }

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
  color: var(--text);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.09); color: var(--text); }

.btn--sm { padding: 0.55rem 1.15rem; font-size: 0.9rem; }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* --------------------------------------------------------------------------
   5. כותרת עליונה
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 9, 17, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--gap);
  min-height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  margin-inline-end: auto;
}
.brand:hover { color: var(--text); }
.brand svg { width: 34px; height: 34px; flex: none; }
.brand__name { font-size: 1.15rem; font-weight: 800; letter-spacing: 0.02em; }
.brand__tag {
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--text-dim);
  letter-spacing: 0.01em;
}

.nav { display: flex; align-items: center; gap: 0.35rem; }
.nav a {
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s, background 0.15s;
}
.nav a:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }
.nav a[aria-current="page"] { color: var(--text); font-weight: 700; }

.nav-toggle {
  display: none;
  padding: 0.5rem;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--text);
  cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; display: block; }

@media (max-width: 900px) {
  .nav-toggle { display: block; order: 3; }
  .header-donate { order: 2; }
  .nav {
    order: 4;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-bottom: 0.75rem;
    border-top: 1px solid var(--line);
    margin-top: 0.25rem;
  }
  .nav[data-open="true"] { display: flex; }
  .nav a { padding: 0.85rem 0.5rem; border-bottom: 1px solid var(--line); }
  .site-header__inner { flex-wrap: wrap; padding-block: 0.6rem; }
}

@media (max-width: 420px) {
  .brand__name { font-size: 1rem; }
  .brand__tag { display: none; }
}

/* --------------------------------------------------------------------------
   6. Hero + שדה כוכבים
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 11vw, 7rem);
  text-align: center;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(44, 127, 192, 0.20), transparent 70%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
}

/* שכבת כוכבים — נוצרת ב-CSS, ללא תלות בתמונה */
.starfield {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-repeat: repeat;
  background-image:
    radial-gradient(1.4px 1.4px at 12% 22%, rgba(255,255,255,.85), transparent),
    radial-gradient(1.1px 1.1px at 68% 14%, rgba(255,255,255,.65), transparent),
    radial-gradient(1.6px 1.6px at 34% 62%, rgba(255,255,255,.75), transparent),
    radial-gradient(1px 1px   at 84% 48%, rgba(255,255,255,.55), transparent),
    radial-gradient(1.3px 1.3px at 22% 82%, rgba(255,255,255,.60), transparent),
    radial-gradient(1px 1px   at 55% 36%, rgba(255,255,255,.45), transparent),
    radial-gradient(1.8px 1.8px at 91% 76%, rgba(255,255,255,.70), transparent),
    radial-gradient(1.1px 1.1px at 46% 8%,  rgba(255,255,255,.50), transparent);
  background-size: 420px 420px;
  opacity: 0.75;
  animation: drift 140s linear infinite;
}
@keyframes drift {
  to { background-position: 420px 420px, -420px 420px, 420px -420px, -420px -420px,
                            420px 420px, -420px 420px, 420px -420px, -420px -420px; }
}

.hero__inner { position: relative; z-index: 1; }

.hero__mark {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 0 22px var(--accent-glow));
}

.hero h1 { margin-bottom: 0.5rem; }
.hero h1 .accent {
  background: linear-gradient(120deg, var(--star), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  max-width: 46ch;
  margin: 0 auto 2.2rem;
  font-size: clamp(1.02rem, 2.4vw, 1.2rem);
  color: var(--text-muted);
}

.hero .btn-row { justify-content: center; }

.hero__note {
  margin-top: 1.75rem;
  font-size: 0.9rem;
  color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   7. גלריית תמונות רצה (marquee)
   -------------------------------------------------------------------------- */
.marquee {
  position: relative;
  padding-block: 2.5rem;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  /* דהייה בקצוות */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: scroll-x 55s linear infinite;
}
.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track { animation-play-state: paused; }

@keyframes scroll-x {
  /* המסלול מוכפל ב-JS, ולכן -50% הוא לולאה מושלמת */
  from { transform: translateX(0); }
  to   { transform: translateX(50%); }   /* RTL: נע ימינה */
}

.marquee__item {
  margin: 0;
  flex: none;
  width: clamp(160px, 26vw, 230px);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}
.marquee__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.marquee__item:hover img { transform: scale(1.05); }

/* --------------------------------------------------------------------------
   8. רשתות וכרטיסים
   -------------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
}
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); }

.card {
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.card h3 { margin-bottom: 0.5rem; }
.card p  { color: var(--text-muted); }
.card--accent { border-color: rgba(95, 176, 232, 0.35); }

/* צעדים ממוספרים */
.steps { counter-reset: step; }
.step { position: relative; padding-inline-start: 4rem; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  inset-inline-start: 0;
  top: -0.15rem;
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  background: rgba(95, 176, 232, 0.12);
  border: 1px solid rgba(95, 176, 232, 0.4);
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 800;
}

/* טור מדיה — טקסט + תמונה */
.media {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .media { grid-template-columns: 1.1fr 0.9fr; }
  .media--flip > *:first-child { order: 2; }
}
.media__figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.media__figure img { width: 100%; }
.media__figure figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  background: var(--surface);
  text-align: center;
}

/* --------------------------------------------------------------------------
   9. ציטוט / עדות
   -------------------------------------------------------------------------- */
.quote {
  position: relative;
  margin: 0;
  padding: 2.25rem clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
}
.quote::before {
  content: "★";
  display: block;
  margin-bottom: 0.75rem;
  color: var(--star);
  font-size: 1.35rem;
}
.quote p {
  font-size: clamp(1.1rem, 2.8vw, 1.4rem);
  line-height: 1.65;
  font-weight: 300;
}
.quote cite {
  display: block;
  margin-top: 1.1rem;
  font-size: 0.9rem;
  font-style: normal;
  color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   10. פס תרומה
   -------------------------------------------------------------------------- */
.donate-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 4.5rem);
  text-align: center;
  background:
    radial-gradient(ellipse 60% 100% at 50% 100%, rgba(240, 217, 138, 0.12), transparent 70%),
    var(--bg-2);
  border-block: 1px solid var(--line);
}
.donate-band h2 { margin-bottom: 0.4rem; }
.donate-band p { max-width: 52ch; margin-inline: auto; color: var(--text-muted); }
.donate-band .btn-row { justify-content: center; margin-top: 1.75rem; }

/* --------------------------------------------------------------------------
   11. גלריית תמונות (עמוד מלא)
   -------------------------------------------------------------------------- */
.gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
}
.gallery__item {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  cursor: zoom-in;
  aspect-ratio: 3 / 4;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease), opacity 0.25s;
}
.gallery__item:hover img { transform: scale(1.04); opacity: 0.9; }
.gallery__item figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 2.5rem 0.9rem 0.8rem;
  font-size: 0.85rem;
  text-align: start;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

/* Lightbox */
.lightbox {
  /* dialog סגור חייב להישאר מוסתר — סגנון מחבר גובר על גיליון הדפדפן,
     ולכן display מוגדר במפורש לכל אחד משני המצבים. */
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  margin: 0;
  padding: 1.5rem;
  place-items: center;
  background: rgba(3, 5, 10, 0.94);
  backdrop-filter: blur(6px);
  border: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  overflow: auto;
}
.lightbox[open] { display: grid; }
.lightbox::backdrop { background: rgba(3, 5, 10, 0.94); }
.lightbox img {
  max-width: min(100%, 900px);
  max-height: 80vh;
  width: auto;
  border-radius: var(--radius);
}
.lightbox__caption {
  margin-top: 1rem;
  color: var(--text-muted);
  text-align: center;
  font-size: 0.95rem;
}
.lightbox__close {
  position: fixed;
  top: 1rem;
  inset-inline-end: 1rem;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.2); }

/* --------------------------------------------------------------------------
   12. טפסים
   -------------------------------------------------------------------------- */
.form {
  display: grid;
  gap: 1.15rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.form__row { display: grid; gap: 1.15rem; }
@media (min-width: 620px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }

.field { display: grid; gap: 0.4rem; }
.field label { font-weight: 600; font-size: 0.95rem; }
.field .hint { font-size: 0.85rem; color: var(--text-dim); line-height: 1.55; }
.field .req { color: var(--star); }

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input[dir="ltr"] { text-align: left; }

.counter { font-size: 0.85rem; color: var(--text-dim); text-align: start; }
.counter[data-state="warn"] { color: var(--star); }
.counter[data-state="over"] { color: #ff8f8f; font-weight: 700; }

.checkbox {
  display: flex;
  align-items: start;
  gap: 0.65rem;
  font-size: 0.95rem;
  line-height: 1.6;
}
.checkbox input { width: auto; margin-top: 0.35rem; flex: none; }

.form__note {
  font-size: 0.9rem;
  color: var(--text-dim);
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

/* תיבת אישור איות */
.spell-preview {
  padding: 0.9rem 1.1rem;
  background: rgba(95, 176, 232, 0.07);
  border: 1px dashed rgba(95, 176, 232, 0.45);
  border-radius: 10px;
  font-size: 0.95rem;
}
.spell-preview strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: #fff;
  direction: ltr;
  text-align: left;
  word-break: break-word;
}
.spell-preview:empty { display: none; }

/* --------------------------------------------------------------------------
   13. תיבות מידע
   -------------------------------------------------------------------------- */
.note {
  padding: 1.1rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  border-inline-start: 3px solid var(--accent);
  background: rgba(95, 176, 232, 0.06);
  font-size: 0.97rem;
  color: var(--text-muted);
}
.note--star { border-inline-start-color: var(--star); background: rgba(240, 217, 138, 0.06); }
.note strong { color: var(--text); }

/* רשימת פרטי קשר */
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.contact-list li {
  display: flex;
  gap: 0.9rem;
  align-items: start;
  margin: 0;
  padding: 1.1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-list svg { width: 22px; height: 22px; flex: none; margin-top: 0.25rem; color: var(--accent); }
.contact-list .label { display: block; font-size: 0.85rem; color: var(--text-dim); }
.contact-list .value { font-size: 1.1rem; font-weight: 700; }
.contact-list a { text-decoration: none; }

/* --------------------------------------------------------------------------
   14. כפתור וואטסאפ צף
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed;
  inset-inline-end: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s var(--ease);
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float svg { width: 30px; height: 30px; }

/* --------------------------------------------------------------------------
   15. כותרת תחתונה
   -------------------------------------------------------------------------- */
.site-footer {
  padding-block: 3rem 2rem;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  font-size: 0.93rem;
  color: var(--text-muted);
}
.site-footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  margin-bottom: 2.25rem;
}
.site-footer h4 {
  margin-bottom: 0.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.4rem; }
.site-footer a { color: var(--text-muted); text-decoration: none; }
.site-footer a:hover { color: var(--text); text-decoration: underline; }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--text-dim);
}

.social { display: flex; gap: 0.6rem; }
.social a {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--text-muted);
}
.social a:hover { color: var(--text); border-color: var(--accent); }
.social svg { width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   16. עזרים
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.stack > * + * { margin-top: 1.25rem; }

/* --------------------------------------------------------------------------
   17. העדפת תנועה מופחתת
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  /* הגלריה הרצה הופכת לגלילה ידנית */
  .marquee { -webkit-mask-image: none; mask-image: none; }
  .marquee__track {
    width: auto;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
  }
  .marquee__item { scroll-snap-align: start; }
}

/* --------------------------------------------------------------------------
   18. הדפסה
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .wa-float, .marquee, .donate-band, .site-footer { display: none; }
  body { background: #fff; color: #000; }
}
