/* ═══════════════════════════════════════
   hero.css — Winair
═══════════════════════════════════════ */

.hero-page-bg {
  background: #fff;
  padding: 20px var(--page-pad) 0;
  position: relative;
}

.hero-ribbon {
  position: absolute;
  bottom: -180px; left: -10px;
  width: 280px; height: 360px;
  z-index: 0; pointer-events: none;
}

/* Large grey plane silhouettes on page bg — matching winair.sx */
.hero-page-bg::before,
.hero-page-bg::after {
  content: '';
  position: absolute;
  pointer-events: none; z-index: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 80'%3E%3Cpath d='M10 40 C30 39 60 15 100 5 L115 4 L115 9 C100 10 85 17 75 40 C85 40 100 39 115 36 L135 30 L138 33 L135 36 L115 41 C100 41 85 41 75 40 C85 63 100 70 115 71 L115 76 L100 75 C60 65 30 41 10 40Z' fill='%23E0E0E0'/%3E%3C/svg%3E") no-repeat;
  background-size: contain;
  opacity: .7;
}
.hero-page-bg::before { width: 420px; height: 168px; top: 30px; right: -30px; }
.hero-page-bg::after  { width: 300px; height: 120px; bottom: -60px; left: 0; transform: scaleX(-1); }

.hero-slider {
  position: relative;
  z-index: 1;
  max-width: var(--page-max);
  width: 100%;
  margin: 0 auto;
  border-radius: 6px;
  height: 200px;
  box-shadow: 0 2px 16px rgba(0,0,0,.14);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: grid;
  grid-template-columns: 55% 45%;
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
  z-index: 0;
}
.hero-slide.active { opacity: 1; pointer-events: all; z-index: 2; }

.slide-1 { background: #4B8DC8; }
.slide-2 { background: #1D3461; }
.slide-3 { background: #2B6CB0; }
.slide-4 { background: #A50D25; }

/* ── Left: destination text ── */
.hero-left {
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: relative; z-index: 2;
}

.hero-date-tag {
  font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,.85);
  letter-spacing: .8px; margin-bottom: 6px;
  text-transform: uppercase;
}
.hero-dest-small {
  font-size: 18px; font-weight: 700;
  color: #fff; text-transform: uppercase;
  letter-spacing: .5px; line-height: 1.1; margin-bottom: 2px;
  font-family: var(--font-display);
}
.hero-dest-large {
  font-size: 38px; font-weight: 900;
  color: #fff; text-transform: uppercase;
  letter-spacing: .2px; line-height: 1;
  font-family: var(--font-display);
}
.hero-sub {
  font-size: 12px; color: rgba(255,255,255,.85); line-height: 1.5; margin-top: 6px;
}

/* ── Right: photo + red diagonal + price ── */
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Red diagonal ribbon — thin pointed slash matching actual site */
.hero-right::before {
  content: '';
  position: absolute;
  top: 0; left: -60px; bottom: 0;
  width: 120px;
  background: linear-gradient(175deg, #A00B22 0%, #7A0818 100%);
  clip-path: polygon(40% 0, 100% 0, 60% 100%, 0% 100%);
  z-index: 2; pointer-events: none;
}

/* Date top-right, price below it */
.hero-price-block {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  text-align: right;
}
.hpb-date    { font-size: 10px; color: #fff; font-weight: 600; letter-spacing: .3px; margin-bottom: 4px; }
.hpb-from    { font-size: 10px; color: rgba(255,255,255,.82); font-weight: 400; margin-bottom: 0; }
.hpb-amount  { display: flex; align-items: flex-start; justify-content: flex-end; line-height: 1; }
.hpb-currency{ font-size: 12px; color: #fff; font-weight: 700; margin-top: 6px; margin-right: 1px; }
.hpb-num     { font-size: 52px; color: #fff; font-weight: 900; line-height: .9; font-family: var(--font-display); }
.hpb-cents   { font-size: 16px; color: #fff; font-weight: 700; margin-top: 4px; }
.hpb-note    { font-size: 10px; color: rgba(255,255,255,.88); text-align: right; line-height: 1.4; margin-top: 2px; }

/* ── Controls ── */
.hero-controls {
  position: absolute; bottom: 10px; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 6px; z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.35); border: none; cursor: pointer;
  transition: background .15s, transform .15s;
}
.hero-dot.active { background: #fff; }
.hero-dot:hover  { transform: scale(1.3); }
.hero-prev, .hero-next {
  background: rgba(255,255,255,.22); border: none; color: #fff;
  width: 22px; height: 22px; border-radius: 50%; cursor: pointer;
  font-size: 14px; display: flex; align-items: center;
  justify-content: center; transition: background .15s;
}
.hero-prev:hover, .hero-next:hover { background: rgba(255,255,255,.42); }