/* ============================================
   AirArabia x Pixoyo Pitch · Open More World
   Bold = headings · Regular = body · Light = accent/mix
   Crimson #E81142 · Golden Glow #FDE490 · Blue Bayoux #506171
   ============================================ */

@font-face {
  font-family: 'AirArabia';
  src: url('fonts/AirArabia Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'AirArabia';
  src: url('fonts/AirArabia Normal Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'AirArabia';
  src: url('fonts/AirArabia Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

:root {
  --crimson: #E81142;
  --crimson-dark: #c00e38;
  --gold: #FDE490;
  --bayoux: #506171;
  --bayoux-dark: #3a4754;
  --ink: #1d242b;
  --muted: #6b7681;
  --line: #e6e8eb;
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --radius: 6px;
  --shadow-sm: 0 2px 6px rgba(20, 28, 36, .06);
  --shadow-md: 0 12px 32px rgba(20, 28, 36, .12);
  --shadow-lg: 0 28px 70px rgba(20, 28, 36, .18);
  --container: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'AirArabia', 'Segoe UI', Tahoma, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0 0 .4em;
}

/* ============================================
   1. Intro header (logo + welcome text)
   ============================================ */
.intro {
  background: #fff;
  border-bottom: 0;
}
.intro__inner {
  max-width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 20px;
  align-items: stretch;
}
.intro__logo {
  background: var(--crimson);
  border-radius: 0;
  padding: 35px 22px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.intro__logo img {
  height: 260px;
  width: auto;
  max-width: 100%;
  display: block;
}
.intro__logo img {
  width: 90%;
  height: auto;
  margin-right: auto;
  display: block;
}
.intro__text {
  background: #fff;
  color: var(--bayoux);
  font-size: 19px;
  line-height: 1.6;
  font-weight: 400;
  padding: 40px 48px 40px 60px;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.intro__text p { margin: 0 0 8px; }
.intro__text p:last-child { margin-bottom: 0; }
.intro__text strong { color: var(--ink); font-weight: 700; }

@media (max-width: 640px) {
  .intro__inner { grid-template-columns: 1fr; gap: 18px; }
  .intro__logo img { height: 88px; }
}

/* ============================================
   1b. Top bar (legacy, AirArabia replica)
   ============================================ */
.topbar { background: var(--crimson); color: #fff; }
.topbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.topbar__logo img { height: 26px; }
.topbar__nav {
  display: flex;
  gap: 26px;
  margin-left: 18px;
  font-weight: 700;
  font-size: 14px;
}
.topbar__nav a { color: #fff; opacity: .95; }
.topbar__nav a:hover { opacity: 1; text-decoration: underline; }
.topbar__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 700;
}
.topbar__chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.14);
  padding: 6px 10px; border-radius: 4px;
  cursor: pointer;
}
.topbar__chip::after { content: '⌄'; font-size: 14px; opacity: .8; }
.topbar__flag {
  width: 22px; height: 14px;
  background: linear-gradient(180deg, #0d5eaf 50%, #fff 50%);
  border-radius: 2px;
}
.topbar__rewards img { height: 22px; }

/* ============================================
   2. Pitch bar (replaces "Travel Update")
   ============================================ */
.pitch-bar {
  background: #fff;
  border-bottom: 1px solid var(--crimson);
}
.pitch-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 28px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 400;
}
.pitch-bar__title {
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pitch-bar__title::before {
  content: 'ⓘ';
  color: var(--crimson);
  font-size: 16px;
}
.pitch-bar__title em {
  color: var(--crimson);
  font-style: normal;
  font-weight: 700;
}

/* ============================================
   3. Headline (red bar with "Open More World!")
   ============================================ */
.headline {
  background: var(--crimson);
  color: #fff;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 38px;
  padding: 60px 24px;
}
.headline h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 5.25vw, 72px);
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1;
}
.headline p {
  margin: 16px 0 0;
  font-weight: 300;
  font-size: clamp(15px, 1.6vw, 18px);
  opacity: .95;
  letter-spacing: .02em;
}

/* ============================================
   4. Hero image
   ============================================ */
.hero-img {
  width: 100%;
  background: var(--bg-soft);
  display: flex;
  justify-content: center;
}
.hero-img figure {
  margin: 0;
  width: 100%;
  max-width: none;
}
.hero-img img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-img--placeholder {
  width: 100%;
  aspect-ratio: 16 / 8;
  background:
    repeating-linear-gradient(45deg, #eef0f3 0 12px, #e6e9ed 12px 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
}

/* ============================================
   5. Concept text block
   ============================================ */
.concept {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 28px;
  text-align: center;
}
.concept__eyebrow {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--crimson);
  font-weight: 700;
  margin-bottom: 18px;
}
.concept h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 32px;
}
.concept__columns {
  column-count: 2;
  column-gap: 48px;
  text-align: left;
  margin-top: 8px;
}
.concept__columns p {
  font-size: 8px;
  color: var(--bayoux);
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 8px;
  break-inside: avoid;
}
.concept__columns p strong { color: var(--ink); font-weight: 700; }
.concept p {
  font-size: 18px;
  color: var(--bayoux);
  font-weight: 400;
  line-height: 1.7;
  margin: 0 auto 14px;
  max-width: 760px;
}
.concept p strong { color: var(--ink); font-weight: 700; }
.concept p em {
  font-style: normal;
  font-weight: 300;
  color: var(--bayoux-dark);
}

@media (max-width: 740px) {
  .concept__columns { column-count: 1; }
}

/* ============================================
   6. Posters
   ============================================ */
.posters {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 28px;
}
.posters__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 22px;
  gap: 18px;
  flex-wrap: wrap;
}
.posters__head h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}
.posters__head p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  font-size: 15px;
}
.posters__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.poster {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d9dcdf;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
  aspect-ratio: 4 / 5;
  margin: 0;
}
.poster--wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 7;
  width: 100%;
}
.poster:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.poster__caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(0,0,0,.55);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  backdrop-filter: blur(4px);
}
.poster--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bayoux);
  font-weight: 700;
  text-align: center;
  padding: 24px;
  background:
    repeating-linear-gradient(45deg, #eef0f3 0 12px, #e6e9ed 12px 24px);
}

/* ============================================
   7. Posters note (explanation under posters)
   ============================================ */
.posters__note {
  max-width: 880px;
  margin: 56px auto 0;
  text-align: center;
}
.posters__note p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--bayoux);
  font-weight: 400;
}

/* ============================================
   8. Digital (website + social)
   ============================================ */
.digital {
  background: #ffffff;
  padding: 20px 28px;
}
.digital__head {
  max-width: 980px;
  margin: 0 auto 40px;
  text-align: center;
}
.digital__head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin: 0 0 14px;
}
.digital__head p {
  margin: 0;
  font-size: 17px;
  color: var(--bayoux);
  font-weight: 300;
}
.digital__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
  align-items: start;
}
.digital__card {
  margin: 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}
.digital__card:hover {
  /* hover disabled */
}
.digital__card--video {
  background: #fff;
  color: var(--ink);
}
.digital__card--video:hover { /* hover disabled */ }
.digital__card--video .digital__caption { color: var(--ink); background: #fff; }
.digital__media {
  position: relative;
  width: 100%;
  background: #fff;
  overflow: hidden;
}
.digital__media--landscape {
  /* 2fr column paired with 1fr 9:16 story → landscape ratio 9/8 matches story height */
  aspect-ratio: 9 / 8;
}
.digital__media--story {
  aspect-ratio: 9 / 16;
  max-width: 440px;
  margin: 24px auto;
  border-radius: 14px;
  overflow: hidden;
}
.digital__media--story video,
.digital__media--story img,
.digital__media--story iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}
.digital__media--auto {
  display: block;
}
.digital__media img,
.digital__media video {
  width: 100%;
  height: auto;
  display: block;
}
.digital__media--landscape img,
.digital__media--landscape video {
  height: 100%;
  object-fit: cover;
}
.digital__media--landscape iframe {
  width: 192.31%;
  height: 192.31%;
  border: 0;
  display: block;
  transform: scale(0.52);
  transform-origin: 0 0;
}
.digital__media--placeholder {
  background:
    repeating-linear-gradient(45deg, #eef0f3 0 12px, #e6e9ed 12px 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bayoux);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  padding: 24px;
  text-align: center;
}
.digital__caption {
  padding: 18px 22px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .02em;
  text-align: center;
}
.digital__title {
  margin: 0 0 16px;
  padding: 18px 4px 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  letter-spacing: .01em;
}
.digital__card--video .digital__title { color: var(--ink); }

/* ============================================
   8b. Billboards
   ============================================ */
.billboards {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 28px;
}
.billboards__head {
  max-width: 880px;
  margin: 0 auto 36px;
  text-align: center;
}
.billboards__head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin: 0 0 12px;
}
.billboards__head p {
  margin: 0;
  font-size: 17px;
  color: var(--bayoux);
  font-weight: 300;
}
.billboard {
  margin: 0 0 28px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #d9dcdf;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}
.billboard:last-child { margin-bottom: 0; }
.billboard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.billboard img {
  width: 100%;
  height: auto;
  display: block;
}
.billboard__caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(0,0,0,.55);
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  backdrop-filter: blur(4px);
}
.billboard--placeholder {
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bayoux);
  font-weight: 700;
  padding: 24px;
  text-align: center;
  background:
    repeating-linear-gradient(45deg, #eef0f3 0 12px, #e6e9ed 12px 24px);
}

/* ============================================
   9. Motion & Social (text + image)
   ============================================ */
.motion {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 28px;
}
.motion__grid {
  display: grid;
  grid-template-columns: 2fr 5fr;
  gap: 24px;
  align-items: start;
}
.motion__text h2 {
  font-size: clamp(22px, 2.2vw, 28px);
  margin: 0 0 14px;
}
.motion__text p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--bayoux);
  margin: 0 0 12px;
}
.motion__text p strong { color: var(--crimson); font-weight: 700; }
.motion__image {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #d9dcdf;
}
.motion__image img {
  width: 100%;
  height: auto;
  display: block;
}
.motion__image--placeholder {
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bayoux);
  font-weight: 700;
  padding: 24px;
  text-align: center;
  background:
    repeating-linear-gradient(45deg, #eef0f3 0 12px, #e6e9ed 12px 24px);
}

/* ============================================
   10. Thank-you band
   ============================================ */
.thanks {
  background: var(--crimson);
  color: #fff;
  padding: 20px 28px;
}
.thanks__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.thanks__inner p {
  margin: 0 0 14px;
  font-size: 21px;
  line-height: 1.55;
  font-weight: 400;
}
.thanks__inner p:last-child { margin-bottom: 0; }
.thanks__inner strong { font-weight: 700; }

@media (max-width: 820px) {
  .motion__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   Footer
   ============================================ */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 40px 24px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}
.footer__logo img {
  height: 112px;
  width: auto;
  display: block;
}
.footer__logo-fallback {
  font-weight: 700;
  font-size: 22px;
  color: var(--crimson);
  letter-spacing: -.01em;
}
.footer__text p {
  margin: 0 0 10px;
}
.footer__text p:last-child { margin-bottom: 0; }
.footer__contact {
  margin-top: 14px !important;
  font-weight: 400;
  color: var(--bayoux);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.footer__contact a {
  color: var(--muted);
  font-weight: 400;
}
.footer__contact a:hover { text-decoration: underline; }
.footer__contact span { color: var(--muted); font-weight: 400; }
.footer__contact .footer__address { color: var(--muted); font-weight: 400; }
.footer__contact span:not(:first-child):not(:last-child) { /* separators */ }

@media (max-width: 640px) {
  .footer__inner { grid-template-columns: 1fr; }
}

/* ============================================
   Back to top
   ============================================ */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--crimson);
  color: #fff;
  font-family: 'AirArabia', 'Segoe UI', Tahoma, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background-color .2s ease;
}

.back-to-top:hover {
  background: var(--crimson-dark);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 820px) {
  .topbar__nav, .topbar__right { display: none; }
  .posters__grid,
  .digital__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .back-to-top {
    right: 14px;
    bottom: 14px;
    padding: 9px 14px;
    font-size: 12px;
  }
}
