/* Doron Amsterdam Tours: stylesheet */

:root {
  --ink: #1A1A1A;
  --ink-soft: #4A4640;
  --canvas: #F2EFE6;
  --canvas-raised: #FBFAF6;
  --canal: #17443D;
  --canal-light: #2C6358;
  --leaf: #6FA97D;
  --leaf-pale: #BFE0C8;
  --brick: #B5442E;
  --brick-dark: #8F3320;
  --gold: #D4A017;
  --white: #FFFFFF;
  --line: rgba(23, 68, 61, 0.14);

  --font-display: 'Fraunces', 'Rubik', serif;
  --font-body: 'Rubik', 'Fraunces', sans-serif;

  --radius-s: 6px;
  --radius-m: 12px;
  --radius-l: 22px;
  --wrap: 1180px;
  --section-pad: clamp(64px, 9vw, 120px);
}

/* Reset */
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; margin: 0 0 0.5em; line-height: 1.15; color: var(--canal); }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  top: 12px;
  inset-inline-start: 24px;
  transform: translateY(-150%);
  background: var(--canal);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-s);
  z-index: 999;
  transition: transform 0.15s ease;
}
.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--leaf);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brick); color: var(--white); }
.btn-primary:hover { background: var(--brick-dark); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-ghost:hover { border-color: var(--white); }
.btn-small { padding: 10px 18px; font-size: 0.85rem; }
.btn-tiny { padding: 8px 16px; font-size: 0.8rem; background: var(--canal); color: var(--white); border-radius: 999px; }
.btn-tiny:hover { background: var(--canal-light); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 239, 230, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 9px;
  overflow: hidden;
  border: 1px solid var(--line);
  flex-shrink: 0;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: var(--canal); }
.brand-sub { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }

.main-nav { display: flex; gap: 28px; }
.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--leaf);
  transition: right 0.2s ease;
}
.main-nav a:hover::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--canal);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 0.82rem;
}
.lang-toggle:hover { background: var(--canal-light); }
.lang-toggle-arrow { opacity: 0.7; font-size: 0.85rem; }
.lang-toggle-target { opacity: 0.65; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-burger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  display: block;
}

/* Hero */
.hero {
  position: relative;
  background: var(--canal);
  color: var(--white);
  padding-top: clamp(72px, 11vw, 130px);
  padding-bottom: clamp(72px, 11vw, 130px);
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-text { max-width: 560px; }
.hero-art {
  background: var(--canvas-raised);
  border-radius: var(--radius-l);
  padding: 14px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.28);
  transform: rotate(-1.4deg);
  justify-self: center;
  max-width: 400px;
  width: 100%;
}
.hero-art img {
  width: 100%;
  display: block;
  border-radius: calc(var(--radius-l) - 8px);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--leaf-pale);
  margin-bottom: 18px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-style: italic;
  font-weight: 500;
  max-width: 14ch;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 46ch;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
/* Trust strip */
.trust-strip {
  background: var(--canvas-raised);
  border-bottom: 1px solid var(--line);
  margin-top: -1px;
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 36px 24px;
  text-align: center;
}
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-num { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--canal-light); }
.trust-label { font-size: 0.82rem; color: var(--ink-soft); }

/* Sections */
.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--canvas-raised); }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--canal-light);
  margin-bottom: 12px;
}
.section h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); max-width: 18ch; }
.section-lead { max-width: 60ch; color: var(--ink-soft); font-size: 1.05rem; }

.card-grid { margin-top: 44px; }

/* Tour packages */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.package-card {
  background: var(--white);
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.package-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(23,68,61,0.12); }
.package-media {
  position: relative;
  height: 170px;
  overflow: hidden;
}
.package-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.package-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,68,61,0) 50%, rgba(23,68,61,0.55) 100%);
}
.package-badge {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  background: rgba(255,255,255,0.92);
  color: var(--canal);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}
.package-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.package-body h3 { font-size: 1.25rem; }
.package-body p { color: var(--ink-soft); font-size: 0.95rem; flex: 1; }
.package-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}
.package-price { font-size: 0.95rem; color: var(--ink-soft); }
.package-price strong { color: var(--canal-light); font-size: 1.15rem; }

/* Attractions */
.attraction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.attraction-card {
  background: var(--white);
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.attraction-card:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(23,68,61,0.1); }
.attraction-media { height: 120px; background: var(--img-tint, var(--canal-light)); }
.attraction-body { padding: 18px 20px 20px; }
.attraction-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.attraction-meta { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 14px; }
.rating { color: var(--gold); font-weight: 700; }
.dot { opacity: 0.5; }
.attraction-footer { display: flex; align-items: center; justify-content: space-between; }
.attraction-price { font-weight: 600; font-size: 0.9rem; color: var(--canal); }

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.about-media {
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 5/6;
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.about-stats div { display: flex; flex-direction: column; }
.about-stats strong { font-family: var(--font-display); font-size: 1.8rem; color: var(--canal-light); }
.about-stats span { font-size: 0.82rem; color: var(--ink-soft); }

/* Gallery band */
.gallery-band {
  position: relative;
  height: clamp(240px, 34vw, 380px);
  overflow: hidden;
}
.gallery-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(23,68,61,0) 45%, rgba(23,68,61,0.88) 100%);
}
.gallery-caption p {
  color: var(--white);
  font-size: 1.1rem;
  max-width: 44ch;
  margin: 0 0 30px;
  font-family: var(--font-display);
  font-style: italic;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.testimonial {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-inline-start: 4px solid var(--leaf);
  border-radius: var(--radius-m);
  padding: 26px 24px;
}
.testimonial p { font-size: 0.98rem; color: var(--ink); }
.testimonial cite { font-style: normal; font-size: 0.85rem; color: var(--ink-soft); font-weight: 600; }

/* Footer */
.site-footer {
  background: var(--canal);
  color: rgba(255,255,255,0.85);
  position: relative;
  padding-top: 20px;
}
.footer-skyline { width: 100%; height: 60px; opacity: 0.9; }
.footer-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 40px 24px 30px;
}
.footer-col h3 {
  color: var(--leaf-pale);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.footer-col p { font-size: 0.92rem; margin-bottom: 8px; }
.footer-col a:hover { color: var(--leaf-pale); }
.footer-whatsapp { margin-top: 10px; background: var(--canal-light); }
.footer-whatsapp:hover { background: var(--leaf); color: var(--canal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 18px 24px;
  font-size: 0.8rem;
  text-align: center;
  color: rgba(255,255,255,0.6);
}

/* RTL (Hebrew) */
[dir="rtl"] body { font-family: 'Rubik', sans-serif; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3 { font-family: 'Rubik', sans-serif; font-style: normal; }
[dir="rtl"] .hero h1 { font-style: normal; }
[dir="rtl"] .gallery-caption p { font-style: normal; }
[dir="rtl"] .testimonial { border-inline-start: none; border-inline-end: 4px solid var(--leaf); }
[dir="rtl"] .hero-art { transform: rotate(1.4deg); }
[dir="rtl"] .package-badge { left: auto; right: 16px; }

/* Responsive */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text { max-width: 100%; margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-art { max-width: 300px; }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .attraction-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-media { max-width: 320px; margin: 0 auto; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--canvas-raised);
    flex-direction: column;
    padding: 18px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .main-nav.is-open { display: flex; }
  .nav-burger { display: flex; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; }
  .attraction-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .lang-toggle-target { display: none; }
}