:root {
  --navy: #12324a;
  --blue: #2474a6;
  --sky: #d8ecf6;
  --sun: #f2a541;
  --coral: #e46f5b;
  --green: #7bae9a;
  --ink: #182027;
  --slate: #5c6872;
  --line: #d9e1e7;
  --cloud: #f4f8fa;
  --white: #fff;
  --max: min(1080px, calc(100% - 32px));
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cloud);
  color: var(--ink);
  font:
    18px/1.65 "Noto Sans Hebrew",
    Arial,
    sans-serif;
}
a {
  color: inherit;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav {
  width: var(--max);
  min-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  flex: 0 0 auto;
}
.brand-copy {
  display: grid;
  gap: 3px;
  margin-right: 10px;
}
.brand-copy strong {
  color: var(--navy);
  font: 900 25px/1 Heebo, sans-serif;
}
.brand-copy small {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}
.navlinks {
  display: flex;
  gap: 10px;
  align-items: center;
}
.navlinks a,
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}
.navlinks a {
  font-size: 15px;
}
.btn {
  background: var(--sun);
  color: var(--navy);
  font-family: Heebo, sans-serif;
}
.btn.dark {
  background: var(--navy);
  color: white;
}
.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(90deg, rgba(18, 50, 74, 0.96), rgba(18, 50, 74, 0.68)),
    var(--hero) center/cover;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(18, 50, 74, 0.95), rgba(18, 50, 74, 0.5) 62%, rgba(18, 50, 74, 0.16));
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: var(--max);
  min-height: 600px;
  margin: auto;
  padding: 80px 0 55px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.eyebrow {
  font-weight: 800;
  color: var(--sky);
}
h1,
h2,
h3 {
  font-family: Heebo, sans-serif;
  line-height: 1.1;
  margin: 0;
}
h1 {
  font-size: clamp(44px, 8vw, 78px);
  font-weight: 900;
  max-width: 780px;
}
h2 {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--navy);
}
h3 {
  font-size: 24px;
  color: var(--navy);
}
.lead {
  max-width: 760px;
  font-size: 21px;
  color: rgba(255, 255, 255, 0.88);
  margin: 18px 0;
}
.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.fact {
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-weight: 800;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}
.section {
  padding: 70px 0;
}
.container {
  width: var(--max);
  margin: auto;
}
.intro {
  max-width: 760px;
  margin: 12px 0 30px;
  color: var(--slate);
}
.days {
  display: grid;
  gap: 16px;
}
.day {
  display: grid;
  grid-template-columns: 110px 1fr;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(18, 50, 74, 0.08);
}
.day-num {
  display: grid;
  place-items: center;
  padding: 20px;
  background: var(--navy);
  color: white;
  font:
    900 20px Heebo,
    sans-serif;
  text-align: center;
}
.day-body {
  padding: 23px;
}
.day-body p {
  margin: 10px 0;
  color: var(--slate);
}
.detail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
}
.alt {
  background: white;
}
.flights {
  display: grid;
  gap: 18px;
}
.flight-group {
  padding: 25px;
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.flight-group h3 {
  margin-bottom: 15px;
}
.leg {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 17px;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.airport b {
  display: block;
  font-size: 20px;
  color: var(--navy);
}
.airport:last-child {
  text-align: left;
}
.route {
  text-align: center;
  color: var(--blue);
  font-weight: 800;
  font-size: 14px;
}
.connection {
  text-align: center;
  padding: 8px;
  color: var(--slate);
  font-size: 14px;
}
.columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.box {
  padding: 26px;
  border-radius: 12px;
  background: white;
  border: 1px solid var(--line);
}
.box.in {
  border-top: 6px solid var(--green);
}
.box.out {
  border-top: 6px solid var(--coral);
}
.box li {
  margin: 8px 0;
}
.contact {
  padding: 35px;
  border-radius: 12px;
  background: var(--navy);
  color: white;
}
.contact h2 {
  color: white;
}
.contact p {
  color: var(--sky);
}
.footer {
  display: grid;
  gap: 5px;
  padding: 30px;
  text-align: center;
  background: var(--navy);
  color: var(--sky);
  font-size: 14px;
}
.footer strong {
  color: white;
  font-family: Heebo, Arial, sans-serif;
  font-size: 16px;
}
.footer span {
  line-height: 1.5;
}
.footer [lang="en"] {
  direction: ltr;
}
@media (max-width: 700px) {
  body {
    font-size: 16px;
  }
  .nav {
    min-height: 62px;
  }
  .brand img {
    width: 46px;
    height: 46px;
  }
  .brand-copy strong {
    font-size: 21px;
  }
  .brand-copy small {
    display: none;
  }
  .navlinks a:not(.btn) {
    display: none;
  }
  .hero-inner {
    min-height: 520px;
    padding-top: 65px;
  }
  .day {
    grid-template-columns: 1fr;
  }
  .day-num {
    justify-content: start;
  }
  .leg {
    grid-template-columns: 1fr;
  }
  .airport:last-child {
    text-align: right;
  }
  .route {
    text-align: right;
  }
  .columns {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 50px 0;
  }
}
