/* ============================================================
   Simple China — Destination page shared styles
   Aligned with the index design system: Imperial Navy + Gold
   + Vermillion accent on Ivory. Frank Ruhl Libre + Cinzel + Heebo.
   ============================================================ */
*,*::before,*::after{font-style:normal !important;}

:root {
  --paper: #F8F4EC;
  --bone: #EEEAE0;
  --cream: #F2EBDA;
  --white: #FFFFFF;

  --ink: #071433;
  --ink-soft: #1A2540;
  --ink-mute: #555F7A;
  --ink-pale: #8A93AB;

  --line: rgba(11, 31, 77, 0.10);
  --line-strong: rgba(11, 31, 77, 0.18);

  --crimson: #B11B1B;
  --crimson-deep: #8C1414;
  --crimson-soft: #D4474A;

  --gold: #9C7E3F;
  --gold-bright: #C9A75C;
  --gold-pale: #E8D29A;

  --font-display-he: 'Frank Ruhl Libre', serif;
  --font-body-he: 'Heebo', sans-serif;
  --font-display-en: 'Cinzel', 'Trajan Pro', serif;
  --font-serif-en: 'Cormorant Garamond', serif;

  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body-he); background: var(--paper); color: var(--ink); font-weight: 300; }

.display { font-family: var(--font-display-he); letter-spacing: -0.02em; }
.display-italic { font-family: var(--font-serif-en); font-style: italic; }
.luxe { font-family: var(--font-display-en); letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; }

/* Top nav — matches index */
nav.topnav { position: fixed; top: 0; inset-inline: 0; z-index: 50;
  background: rgba(248, 244, 236, 0.92); backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line); transition: all 400ms ease; }
.nav-link { font-size: 13px; letter-spacing: 0.05em; color: var(--ink-mute); font-weight: 400; transition: color 250ms ease; }
.nav-link:hover { color: var(--crimson); }
/* Mobile nav (hamburger) */
.nav-burger { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; padding: 0; border: none; background: transparent; border-radius: 8px; cursor: pointer; flex-shrink: 0; }
.nav-burger:hover { background: var(--line); }
.nav-burger:focus-visible { outline: 2px solid var(--crimson); outline-offset: 2px; }
.nav-burger-bars { position: relative; display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: background 200ms ease; }
.nav-burger-bars::before, .nav-burger-bars::after { content: ''; position: absolute; inset-inline: 0; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 250ms ease, top 250ms ease; }
.nav-burger-bars::before { top: -7px; }
.nav-burger-bars::after { top: 7px; }
.nav-burger[aria-expanded="true"] .nav-burger-bars { background: transparent; }
.nav-burger[aria-expanded="true"] .nav-burger-bars::before { top: 0; transform: rotate(45deg); }
.nav-burger[aria-expanded="true"] .nav-burger-bars::after { top: 0; transform: rotate(-45deg); }
@media (max-width: 1023px) { .nav-burger { display: inline-flex; } }
.mobile-nav-panel { position: absolute; top: 100%; inset-inline: 0; display: flex; flex-direction: column; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 24px 48px -12px rgba(7,20,51,0.22); max-height: calc(100dvh - 100%); overflow-y: auto; padding: 0.25rem 0; }
.mobile-nav-panel[hidden] { display: none; }
.mobile-nav-panel a { display: flex; align-items: center; min-height: 44px; padding: 0.7rem 1.5rem; font-size: 15px; color: var(--ink-mute); border-bottom: 1px solid var(--line); text-decoration: none; transition: background 200ms ease, color 200ms ease; }
.mobile-nav-panel a:last-child { border-bottom: none; }
.mobile-nav-panel a:hover, .mobile-nav-panel a:focus-visible { background: rgba(177,27,27,0.06); color: var(--crimson); outline: none; }
@media (min-width: 1024px) { .mobile-nav-panel { display: none !important; } }
.nav-logo { font-family: var(--font-display-en); font-weight: 600; font-size: 1.05rem;
  color: var(--ink); letter-spacing: 0.22em; line-height: 1; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.nav-logo .amp { color: var(--gold-bright); font-size: 0.8em; font-weight: 400; }
.nav-logo-img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
  box-shadow: 0 0 0 1px var(--gold-bright); flex-shrink: 0;
  transition: transform 400ms var(--ease-out-quint); }
.nav-logo:hover .nav-logo-img { transform: rotate(-8deg) scale(1.05); }
.nav-social-icon { width: 34px; height: 34px; border-radius: 50%; display: inline-flex;
  align-items: center; justify-content: center; color: var(--ink-soft);
  background: transparent; border: 1px solid var(--line-strong); transition: all 280ms ease; }
.nav-social-icon:hover { color: var(--paper); background: var(--ink); border-color: var(--ink); transform: translateY(-2px); }

/* Buttons */
.btn-red, .btn-primary { display: inline-flex; align-items: center; justify-content: center;
  gap: 0.75rem; padding: 0.95rem 1.85rem; background: var(--crimson); color: var(--paper);
  font-weight: 500; font-size: 0.9rem; letter-spacing: 0.08em; border: 1px solid var(--crimson);
  text-decoration: none; transition: all 400ms var(--ease-out-quint); cursor: pointer; }
.btn-red:hover, .btn-primary:hover { background: var(--crimson-deep); border-color: var(--crimson-deep);
  transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(177, 27, 27, 0.40); }
.btn-outline { display: inline-flex; align-items: center; gap: 0.75rem; padding: 0.95rem 1.85rem;
  background: transparent; color: var(--paper); border: 1px solid rgba(248, 244, 236, 0.50);
  font-weight: 500; font-size: 0.9rem; letter-spacing: 0.08em; text-decoration: none;
  transition: all 300ms ease; }
.btn-outline:hover { border-color: var(--gold-bright); color: var(--gold-pale); background: rgba(201, 167, 92, 0.08); }

/* Sticky WhatsApp CTA */
.float-cta { position: fixed; bottom: 1.75rem; left: 1.75rem; z-index: 40;
  width: 64px; height: 64px; border-radius: 50%; background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center; text-decoration: none;
  box-shadow: 0 12px 32px -8px rgba(37, 211, 102, 0.55); transition: all 400ms var(--ease-out-quint); }
.float-cta svg { width: 34px; height: 34px; }
.float-cta:hover { background: #1ebe5d; transform: scale(1.08); box-shadow: 0 16px 38px -8px rgba(37, 211, 102, 0.7); }

/* Hero */
.dest-hero { position: relative; min-height: 80vh; display: flex; align-items: flex-end;
  padding: 9rem 0 4rem; overflow: hidden; }
.dest-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center;
  background-image: linear-gradient(180deg, rgba(7, 20, 51, 0.30) 0%, rgba(7, 20, 51, 0.20) 45%, rgba(7, 20, 51, 0.90) 100%), var(--hero-image, none); }
.breadcrumb { color: rgba(248, 244, 236, 0.70); font-size: 0.85rem; letter-spacing: 0.05em;
  font-family: var(--font-serif-en); font-style: italic; }
.breadcrumb a { color: rgba(248, 244, 236, 0.85); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-pale); }
.dest-tag { display: inline-block; padding: 0.45rem 1.1rem; background: rgba(201, 167, 92, 0.18);
  color: var(--gold-pale); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; border: 1px solid rgba(201, 167, 92, 0.50); }

/* Quick facts strip */
.quick-facts { background: var(--bone); padding: 3rem 0; border-bottom: 1px solid var(--line); }
.fact-card { text-align: center; padding: 1rem; }
.fact-label { font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 0.55rem; }
.fact-value { font-family: var(--font-display-he); font-size: 1.4rem; font-weight: 500;
  color: var(--ink); line-height: 1.3; }

/* Duration */
.duration-section { background: var(--paper); padding: 5.5rem 0; }
.duration-card { padding: 2.1rem 1.8rem; border: 1px solid var(--line);
  background: var(--white); transition: all 380ms var(--ease-out-quint); }
.duration-card.recommended { border-color: var(--gold-bright);
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%); position: relative; }
.duration-card.recommended::before { content: 'מומלץ ביותר'; position: absolute; top: -12px;
  right: 1.5rem; background: var(--ink); color: var(--gold-pale); font-size: 0.7rem;
  padding: 0.35rem 0.95rem; font-weight: 600; letter-spacing: 0.18em; }
.duration-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -16px rgba(7, 20, 51, 0.12); border-color: var(--gold-bright); }
.duration-days { font-family: var(--font-display-he); font-size: 3rem; font-weight: 500;
  color: var(--ink); line-height: 1; margin-bottom: 0.4rem; letter-spacing: -0.025em; }
.duration-label { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 0.9rem; }
.duration-desc { font-family: var(--font-display-he); font-size: 0.98rem; line-height: 1.75;
  color: var(--ink-mute); font-weight: 300; }

/* Weather */
.weather-section { background: var(--cream); padding: 5.5rem 0; }
.weather-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.weather-card { background: var(--white); padding: 1.85rem 1.5rem; border: 1px solid var(--line);
  text-align: center; transition: all 380ms var(--ease-out-quint); }
.weather-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -16px rgba(7, 20, 51, 0.12);
  border-color: var(--gold-bright); }
.weather-icon { font-size: 2.4rem; margin-bottom: 0.6rem; }
.weather-season { font-family: var(--font-display-he); font-size: 1.35rem; font-weight: 500;
  color: var(--ink); margin-bottom: 0.2rem; letter-spacing: -0.015em; }
.weather-months { font-family: var(--font-serif-en); font-style: italic; font-size: 0.9rem;
  color: var(--ink-mute); margin-bottom: 0.9rem; }
.weather-temp { display: inline-block; padding: 0.3rem 0.85rem; background: var(--ink);
  color: var(--gold-pale); font-family: var(--font-display-en); font-weight: 500; font-size: 0.78rem;
  letter-spacing: 0.1em; margin-bottom: 1rem; }
.weather-desc { font-family: var(--font-display-he); font-size: 0.88rem; line-height: 1.7;
  color: var(--ink-mute); font-weight: 300; }

/* Unique / "only here" — navy hero w/ image overlay */
.unique-section { background: var(--ink); color: var(--paper); padding: 6.5rem 0;
  position: relative; overflow: hidden; }
.unique-section::before { content: ''; position: absolute; inset: 0;
  background-image: var(--hero-image, none); background-size: cover; background-position: center;
  opacity: 0.10; mix-blend-mode: lighten; }
.unique-section::after { content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201, 167, 92, 0.10), transparent 60%); pointer-events: none; }
.unique-card { background: rgba(255, 255, 255, 0.04); backdrop-filter: blur(12px);
  border: 1px solid rgba(232, 210, 154, 0.20); padding: 2.1rem 1.85rem;
  box-shadow: inset 0 1px 0 rgba(232, 210, 154, 0.18);
  transition: all 380ms var(--ease-out-quint); position: relative; z-index: 1; }
.unique-card:hover { background: rgba(255, 255, 255, 0.07); border-color: var(--gold-bright); transform: translateY(-4px); }
.unique-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.unique-title { font-family: var(--font-display-he); font-size: 1.3rem; font-weight: 500;
  color: var(--paper); margin-bottom: 0.875rem; line-height: 1.35; letter-spacing: -0.015em; }
.unique-desc { font-family: var(--font-display-he); font-size: 0.95rem; line-height: 1.8;
  color: rgba(248, 244, 236, 0.85); font-weight: 300; }

/* Moments */
.moment-card { background: var(--white); padding: 2.1rem 1.9rem;
  border-inline-start: 3px solid var(--gold-bright);
  transition: all 380ms var(--ease-out-quint); }
.moment-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px -12px rgba(7, 20, 51, 0.10); }
.moment-time { font-family: var(--font-serif-en); font-size: 1.2rem; font-style: italic;
  color: var(--crimson); margin-bottom: 0.7rem; font-weight: 500; }
.moment-desc { font-family: var(--font-display-he); font-size: 1rem; line-height: 1.8;
  color: var(--ink-mute); font-weight: 300; }

/* Recommended places */
.place-card { background: var(--white); border: 1px solid var(--line); overflow: hidden;
  transition: all 420ms var(--ease-out-quint); }
.place-card:hover { transform: translateY(-6px); border-color: var(--gold-bright);
  box-shadow: 0 30px 60px -20px rgba(7, 20, 51, 0.18); }
.place-img { aspect-ratio: 16/10; background-size: cover; background-position: center;
  transition: transform 700ms ease; }
.place-card:hover .place-img { transform: scale(1.05); }
.place-body { padding: 1.5rem 1.5rem 1.75rem; }
.place-type { display: inline-block; padding: 0.25rem 0.75rem; background: var(--bone);
  color: var(--gold); font-family: var(--font-display-en); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 0.95rem; }
.place-name { font-family: var(--font-display-he); font-size: 1.4rem; font-weight: 500;
  color: var(--ink); margin-bottom: 0.7rem; line-height: 1.3; letter-spacing: -0.015em; }
.place-desc { font-family: var(--font-display-he); font-size: 0.92rem; line-height: 1.7;
  color: var(--ink-mute); margin-bottom: 1.25rem; font-weight: 300; }
.place-tip { background: var(--cream); padding: 0.9rem 1rem;
  border-inline-end: 3px solid var(--gold-bright); font-size: 0.85rem; color: var(--ink-mute); }
.place-tip-label { font-family: var(--font-display-en); font-weight: 500; color: var(--gold);
  margin-inline-end: 0.5rem; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; }

/* Reveal animations */
.fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp 1s var(--ease-out-quint) forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.d-1 { animation-delay: 0.15s; } .d-2 { animation-delay: 0.3s; } .d-3 { animation-delay: 0.45s; }
.reveal { opacity: 0; transform: translateY(30px); transition: all 1s var(--ease-out-quint); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Final CTA */
.cta-section { background: var(--ink); color: var(--paper); padding: 6rem 0;
  position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0;
  background-image: var(--hero-image, none); background-size: cover; background-position: center;
  opacity: 0.14; mix-blend-mode: lighten; }
.cta-section::after { content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(201, 167, 92, 0.12), transparent 60%); pointer-events: none; }
.cta-section .btn-red { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.cta-section .btn-red:hover { background: var(--gold-pale); border-color: var(--gold-pale); color: var(--ink); }

/* Footer */
footer { background: var(--ink); color: rgba(248, 244, 236, 0.65); padding: 4rem 0 1.5rem; }
footer a { color: rgba(248, 244, 236, 0.85); transition: color 200ms ease; text-decoration: none; }
footer a:hover { color: var(--gold-pale); }
.footer-logo { font-family: var(--font-display-en); font-size: 1.4rem; font-weight: 600;
  letter-spacing: 0.22em; color: var(--paper); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.6rem; }
.footer-logo .amp { color: var(--gold-bright); font-size: 0.8em; font-weight: 400; }
.social-icon { width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(248, 244, 236, 0.20); display: flex; align-items: center;
  justify-content: center; transition: all 280ms ease; color: var(--paper); }
.social-icon:hover { border-color: var(--gold-bright); background: var(--gold-bright); color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  .fade-up, .reveal { animation: none; transition: none; opacity: 1; transform: none; }
}
