@import url("https://fonts.googleapis.com/css2?family=Assistant:wght@400;500;600;700;800;900&display=swap");

:root {
  --ink: #080808;
  --ink2: #151515;
  --paper: #fffaf0;
  --paper2: #f4ecd9;
  --gold: #d4af37;
  --gold2: #f5d76d;
  --soft: #777;
  --line: rgba(212, 175, 55, .35);
  --shadow: 0 28px 90px rgba(0, 0, 0, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Assistant", Arial, sans-serif;
  direction: rtl;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(212,175,55,.13), transparent 32rem),
    linear-gradient(180deg, var(--paper), var(--paper2));
}

body.menu-open {
  overflow: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

.topbar {
  height: 84px;
  background: rgba(5, 5, 5, .96);
  border-bottom: 1px solid rgba(212, 175, 55, .25);
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 0 42px;
  position: sticky;
  top: 0;
  z-index: 99;
  backdrop-filter: blur(16px);
}

.brand {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  min-width: 230px;
}

.brand-logo,
.brand .image-missing {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.image-missing {
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 16px;
  background: rgba(212,175,55,.1);
}

.image-missing:before {
  content: "✡";
  color: var(--gold2);
  font-size: 28px;
}

.brand strong {
  display: block;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.brand small {
  display: block;
  color: var(--gold2);
  font-size: 14px;
  font-weight: 800;
  margin-top: 4px;
}

.nav {
  display: flex;
  gap: 34px;
  align-items: center;
}

.nav a {
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  padding: 31px 0 28px;
  border-bottom: 3px solid transparent;
  transition: .18s;
}

.nav a:hover,
.nav a.active {
  color: var(--gold2);
  border-bottom-color: var(--gold);
}

.bot-link {
  border: 1px solid var(--gold);
  color: var(--gold2);
  border-radius: 9px;
  padding: 11px 18px;
  font-weight: 900;
  white-space: nowrap;
  transition: .2s;
}

.bot-link:hover {
  background: var(--gold);
  color: var(--ink);
}

.menu {
  display: none;
  width: 44px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 10px;
  padding: 10px;
}

.menu span {
  display: block;
  height: 2px;
  background: var(--gold2);
  margin: 5px 0;
}

.hero {
  min-height: 660px;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  padding: 90px 22px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url("/assets/img/hero.jpg") left center / cover no-repeat,
    linear-gradient(135deg, #f7e8b4, #fffaf0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,250,240,.98), rgba(255,250,240,.90) 48%, rgba(255,250,240,.18)),
    radial-gradient(circle at 58% 40%, rgba(212,175,55,.22), transparent 34rem);
}

.hero-box {
  position: relative;
  width: min(1050px, 100%);
  animation: rise .8s ease both;
}

.hero-main {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: clamp(46px, 7vw, 82px);
  line-height: .9;
  font-weight: 900;
  letter-spacing: -2px;
  text-shadow: 0 12px 34px rgba(212,175,55,.22);
}

.hero h1 {
  margin: 0;
  color: var(--gold);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.05;
  font-weight: 900;
}

.hero-sub {
  margin: 24px 0 34px;
  font-size: clamp(21px, 3vw, 32px);
  font-weight: 900;
}

.hero-sub span {
  color: var(--gold);
  padding: 0 7px;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.btn {
  min-width: 210px;
  min-height: 54px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-size: 18px;
  font-weight: 900;
  transition: .2s;
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--ink);
}

.btn.black {
  background: var(--ink);
  color: var(--gold2);
}

.intro {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
  padding: 58px 0 68px;
  display: grid;
  grid-template-columns: .95fr 1.18fr;
  gap: 64px;
  align-items: center;
}

.text-panel,
.preview-panel {
  text-align: center;
}

.text-panel i,
.preview-panel i {
  display: inline-block;
  width: 44px;
  height: 4px;
  border-radius: 8px;
  background: var(--gold);
  margin-bottom: 14px;
}

.intro h2 {
  font-size: clamp(31px, 4vw, 43px);
  line-height: 1;
  margin: 0 0 24px;
  font-weight: 900;
}

.text-panel h3 {
  margin: 24px 0 10px;
  font-size: 24px;
}

.text-panel p {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.75;
  font-weight: 700;
}

.preview-image {
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 260px;
}

.preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-image .image-missing {
  min-height: 300px;
  border: 0;
  border-radius: 0;
}

.preview-image .image-missing:after {
  content: "שים תמונה: assets/img/preview.png";
  color: var(--gold2);
  font-weight: 900;
  margin-right: 10px;
}

.stats {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto 74px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.stats div {
  min-height: 138px;
  background:
    radial-gradient(circle at top left, rgba(212,175,55,.18), transparent 52%),
    linear-gradient(145deg, #070707, #1a1a1a);
  color: white;
  border-radius: 14px;
  border: 1px solid rgba(212,175,55,.28);
  box-shadow: var(--shadow);
  padding: 26px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: center;
}

.stats img,
.icon-fallback {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.icon-fallback {
  border: 1px solid rgba(212,175,55,.55);
  border-radius: 15px;
  display: inline-grid;
  place-items: center;
  background: rgba(212,175,55,.1);
}

.icon-fallback:before {
  content: "✦";
  color: var(--gold2);
  font-size: 26px;
}

.stats span {
  color: #fff;
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
}

.stats strong {
  display: block;
  color: var(--gold2);
  font-size: clamp(34px, 5vw, 46px);
  line-height: .9;
  font-weight: 900;
}

.cta {
  width: min(980px, calc(100% - 44px));
  margin: 0 auto 76px;
  background:
    linear-gradient(135deg, rgba(8,8,8,.97), rgba(25,25,25,.97)),
    radial-gradient(circle at top, rgba(212,175,55,.20), transparent 60%);
  color: var(--gold2);
  border: 1px solid var(--gold);
  border-radius: 15px;
  padding: 34px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta h2 {
  margin: 0 0 24px;
  font-size: clamp(23px, 4vw, 32px);
  line-height: 1.25;
}

.gold-divider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin:40px 0;
}

.gold-divider::before,
.gold-divider::after{
    content:"";
    flex:1;
    height:2px;

    background:
    linear-gradient(
        90deg,
        transparent,
        #d4af37,
        transparent
    );
}

.gold-divider img{
    width:34px;
    height:34px;

    background:#111;

    border:
    2px solid rgba(212,175,55,.45);

    border-radius:50%;

    padding:7px;

    object-fit:contain;

    flex-shrink:0;

    box-shadow:
    0 0 15px rgba(212,175,55,.20),
    0 0 30px rgba(212,175,55,.08);
}

.footer {
  background: linear-gradient(180deg, #111, #050505);
  color: white;
  text-align: center;
  padding: 30px 20px 38px;
  border-top: 1px solid rgba(212,175,55,.22);
}

.footer p {
  margin: 0 0 9px;
  color: #d7d7d7;
  font-weight: 600;
}

.footer small {
  color: #d0d0d0;
}

.footer a {
  color: var(--gold2);
  text-decoration: underline;
  font-weight: 800;
}

.page-head {
  text-align: center;
  padding: 82px 22px 40px;
}

.page-head span,
.single-content > span,
.policy > span {
  color: var(--gold);
  font-weight: 900;
}

.page-head h1,
.support-hero h1,
.policy h1 {
  margin: 8px 0 10px;
  font-size: clamp(46px, 7vw, 68px);
  line-height: .95;
  font-weight: 900;
}

.page-head p,
.support-hero p {
  margin: 0;
  color: #555;
  font-size: 21px;
  font-weight: 700;
}

.story-grid {
  width: min(1080px, calc(100% - 44px));
  margin: 0 auto 86px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.story-card {
  background: white;
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0,0,0,.10);
  transition: .2s;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 78px rgba(0,0,0,.16);
}

.story-img {
  height: 270px;
  background: #0e0e0e;
  overflow: hidden;
}

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .25s;
}

.story-card:hover img {
  transform: scale(1.035);
}

.story-info {
  padding: 20px 22px 24px;
}

.story-info h2 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.05;
  font-weight: 900;
}

.story-info span {
  display: block;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 14px;
}

.story-info em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--ink);
  border-radius: 8px;
  padding: 8px 14px;
  font-weight: 900;
  display: inline-block;
}

.single-story {
  width: min(1100px, calc(100% - 44px));
  margin: 72px auto 92px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 52px;
  align-items: start;
}

.back {
  grid-column: 1 / -1;
  color: var(--gold);
  font-weight: 900;
}

.single-image {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--ink);
}

.single-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.single-content {
  background:
    radial-gradient(circle at top right, rgba(212,175,55,.16), transparent 55%),
    #080808;
  color: white;
  border-radius: 18px;
  padding: 44px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.single-content h1 {
  margin: 10px 0 22px;
  color: var(--gold2);
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-bottom: 24px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(212,175,55,.25);
}

.meta p {
  margin: 0;
  color: #e8e8e8;
  font-weight: 700;
}

.meta b {
  color: var(--gold2);
}

.single-content h2 {
  color: var(--gold2);
  margin: 0 0 14px;
}

.single-content > p {
  font-size: 19px;
  line-height: 1.9;
  margin: 0;
}

.support-hero {
  text-align: center;
  padding: 86px 22px 36px;
}

.support-grid {
  width: min(1060px, calc(100% - 44px));
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.support-grid a {
  background:
    radial-gradient(circle at top, rgba(212,175,55,.16), transparent 58%),
    linear-gradient(145deg, #0a0a0a, #171717);
  min-height: 230px;
  color: white;
  border: 1px solid rgba(212,175,55,.28);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: .2s;
}

.support-grid a:hover {
  transform: translateY(-4px);
}

.support-grid img,
.support-grid .icon-fallback {
  margin: 0 auto 18px;
}

.support-grid strong {
  display: block;
  color: var(--gold2);
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 10px;
}

.support-grid span {
  display: block;
  color: #d6d6d6;
  line-height: 1.5;
  font-weight: 600;
}

.faq {
  width: min(900px, calc(100% - 44px));
  margin: 0 auto 86px;
}

.faq h2 {
  font-size: 34px;
  text-align: center;
  margin: 0 0 20px;
}

.faq details {
  background: white;
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 13px;
  margin-bottom: 14px;
  padding: 18px 20px;
  box-shadow: 0 12px 36px rgba(0,0,0,.06);
}

.faq summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
}

.faq p {
  margin: 12px 0 0;
  color: #444;
  font-size: 18px;
  line-height: 1.6;
}

.policy {
  width: min(920px, calc(100% - 44px));
  margin: 76px auto 90px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 18px;
  padding: 48px;
  box-shadow: var(--shadow);
}

.policy h2 {
  margin: 34px 0 10px;
  color: #b28a13;
  font-size: 25px;
}

.policy p {
  margin: 0;
  color: #222;
  font-size: 18px;
  line-height: 1.86;
  font-weight: 600;
}

.notfound {
  min-height: calc(100vh - 84px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 44px 22px;
  color: white;
  background:
    linear-gradient(90deg, rgba(0,0,0,.85), rgba(0,0,0,.45)),
    url("/assets/img/forest.jpg") center / cover no-repeat,
    #111;
}

.notfound h1 {
  margin: 0;
  color: var(--gold2);
  font-size: clamp(110px, 16vw, 190px);
  line-height: .82;
}

.notfound p {
  margin: 22px 0 30px;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 900;
}

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

@media (max-width: 980px) {
  .topbar {
    height: auto;
    min-height: 78px;
    padding: 14px 18px;
    gap: 16px;
    flex-wrap: wrap;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo,
  .brand .image-missing {
    width: 52px;
    height: 52px;
  }

  .menu {
    display: block;
  }

  .nav {
    display: none;
    order: 5;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 10px;
    border-top: 1px solid rgba(212,175,55,.18);
  }

  body.menu-open .nav {
    display: flex;
  }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .bot-link {
    font-size: 14px;
    padding: 10px 14px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255,250,240,.96), rgba(255,250,240,.88)),
      radial-gradient(circle at 50% 0%, rgba(212,175,55,.22), transparent 25rem);
  }

  .intro,
  .single-story {
    grid-template-columns: 1fr;
  }

  .stats,
  .support-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .single-image img {
    height: 420px;
  }

  .single-content,
  .policy {
    padding: 30px 24px;
  }
}

@media (max-width: 560px) {
  .actions .btn {
    width: 100%;
  }

  .intro,
  .stats,
  .cta,
  .story-grid,
  .single-story,
  .support-grid,
  .faq,
  .policy {
    width: calc(100% - 30px);
  }

  .stats div {
    grid-template-columns: 58px 1fr;
    padding: 22px;
  }

  .story-img {
    height: 230px;
  }

  .single-image img {
    height: 340px;
  }
}

.story-content{
    display:flex;
    flex-direction:column;
    min-height:320px;
}

.story-credit{
    margin-top:auto !important;
    padding-top:25px;

    border-top:
    1px solid rgba(
    212,
    175,
    55,
    .15
    );

    font-size:15px;

    color:#fff;
}

.story-credit span{
    color:var(--gold2);
    font-weight:800;
}

.story-credit a{
    color:white;
    text-decoration:none;
    font-weight:700;
}

.story-credit a:hover{
    color:var(--gold);
}