/* מטיילים בסין והונג קונג — עיצוב הדפים הציבוריים (תואם לשפת העיצוב של האפליקציה) */

:root {
  --bg: #f7f7f5;
  --surface: #ffffff;
  --surface-2: #f2f2ee;
  --accent: #ffc700;
  --accent-strong: #f5b900;
  --accent-dark: #a06b00;
  --accent-soft: #fff3c4;
  --accent-soft-text: #8a6d00;
  --text: #14161c;
  --text-body: #4a4f5a;
  --text-muted: #8a8f99;
  --border: #e8e8e4;
  --shadow: 0 1px 2px rgba(20, 22, 28, .04), 0 8px 24px rgba(20, 22, 28, .05);
  --radius: 18px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0e0c0a;
    --surface: #1a1712;
    --surface-2: #24201a;
    --accent: #ffd24d;
    --accent-strong: #f0bc2e;
    --accent-dark: #ffe08a;
    --accent-soft: #3a3115;
    --accent-soft-text: #ffe08a;
    --text: #f5f5f2;
    --text-body: #c9cdd6;
    --text-muted: #8b8f98;
    --border: #2c281f;
    --shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 10px 30px rgba(0, 0, 0, .35);
  }
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  direction: rtl;
  font-family: "Heebo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.75;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

/* ---------- Header ---------- */

header.site {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
}

header.site .wrap {
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex: none;
  display: block;
  box-shadow: 0 2px 8px rgba(245, 185, 0, .28);
}

.brand-name {
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  line-height: 1.3;
}

.brand-sub {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.3;
}

nav.site {
  margin-inline-start: auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

nav.site a {
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface-2);
  white-space: nowrap;
  transition: background .15s ease;
}

nav.site a:hover { background: var(--accent-soft); }
nav.site a[aria-current="page"] {
  background: var(--accent);
  color: #14161c;
  font-weight: 600;
}

/* ---------- Typography ---------- */

h1 {
  font-size: 34px;
  line-height: 1.25;
  color: var(--text);
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: -.01em;
}

h2 {
  font-size: 21px;
  color: var(--text);
  margin: 40px 0 10px;
  font-weight: 600;
}

p { margin: 0 0 16px; }

ul { margin: 0 0 16px; padding-inline-start: 22px; }
li { margin-bottom: 8px; }

strong { color: var(--text); }

a {
  color: var(--accent-dark);
  text-underline-offset: 2px;
}

.effective {
  display: inline-block;
  font-size: 14px;
  color: var(--accent-soft-text);
  background: var(--accent-soft);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 26px;
}

/* ---------- Cards ---------- */

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.card > p:last-child { margin-bottom: 0; }

.lead {
  font-size: 19px;
  color: var(--text-body);
}

/* FAQ items inside a card */
.faq { padding: 18px 0; border-bottom: 1px solid var(--border); }
.faq:first-child { padding-top: 0; }
.faq:last-child { padding-bottom: 0; border-bottom: 0; }
.faq h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}
.faq p { margin: 0; }

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.contact-row:last-child { border-bottom: 0; }
.contact-row .ico {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--accent-soft);
  display: grid; place-items: center; flex: none;
  font-size: 18px;
}
.contact-row .label { font-size: 14px; color: var(--text-muted); }
.contact-row .value { font-weight: 600; color: var(--text); }
.contact-row .value a { color: var(--accent-dark); }

/* email call-to-action button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #14161c;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(245, 185, 0, .3);
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(245, 185, 0, .38); }

/* ---------- Footer ---------- */

footer.site {
  border-top: 1px solid var(--border);
  margin-top: 50px;
  padding-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
}

footer.site a { color: var(--text-muted); }

@media (max-width: 560px) {
  body { font-size: 16px; }
  h1 { font-size: 27px; }
  .card { padding: 20px; }
  header.site .wrap { gap: 10px; }
  nav.site { margin-inline-start: 0; width: 100%; }
}
