@font-face {
  font-family: "ABCArizona";
  src: url("../fonts/ABCArizonaFlareVariable.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "MinionPro";
  src: url("../fonts/MinionPro-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "NeueMontrealMedium";
  src: url("../fonts/NeueMontreal-Medium.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "NeueMontrealRegular";
  src: url("../fonts/NeueMontreal-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "RecklessNeue";
  src: url("../fonts/RecklessNeue-Book.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: #000; color: #fff;
}

/* ============================================================
   DESKTOP
   ============================================================ */
.container {
  display: flex;
  width: 100%; height: 100vh;
  overflow: hidden;
}

.left-section {
  width: 48%; height: 100%;
  position: relative; overflow: hidden; background: #000;
}
.video-wrapper { width: 100%; height: 100%; }
.left-section video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
}

.right-section {
  width: 52%; height: 100%;
  padding: 150px 100px 60px 100px;
  display: flex;
  flex-direction: column;
  background: #000;
  justify-content: center;
}
.content{
    font-size: 16px;
}

.logo-wrap {
  display: flex; justify-content: center; align-items: center;
}
.logo-wrap img { width: 256px; height: auto; display: block; }

.center-block {
  display: flex; flex-direction: column; align-items: center; width: 100%;
}

.heading {
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0.04em;
  margin-bottom: 70px;
  white-space: nowrap;
}
.heading-mobile {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.04em;
  margin-bottom: 30px;
  white-space: nowrap;
}
.heading-regular {
  font-family: "NeueMontrealMedium", Arial, sans-serif;
  font-weight: 500; text-transform: uppercase; color: #fff;
}
.heading-para {
  font-family: "NeueMontrealRegular", Arial, sans-serif;
  font-size: 24px;
  font-weight: 400; color: #ffffffbd;
  line-height: 1.4;
  max-width: 700px;
  margin-bottom: 70px;
}

.heading-italic {
  font-family: "RecklessNeue", serif;
  font-weight: 400; font-size: 32px; color: #fff;
  text-transform: uppercase; margin-left: 6px;
}

.buttons { display: flex; flex-direction: column; gap: 16px; }
.buttons a {
  display: flex; justify-content: center; align-items: center;
  color: #fff;
  font-family: "NeueMontrealMedium", Arial, sans-serif;
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; width: 212px; height: 32px;
  border: 1px solid rgba(255,255,255,0.75);
  transition: background 0.25s ease, color 0.25s ease;
}
.buttons a:hover { background: #fff; color: #000; }

.bottom-block {
  display: flex; flex-direction: column; align-items: center; width: 100%;
}
.company-logo img { width: 120px; height: auto; display: block; margin-bottom: 14px; }
.footer p {
  font-family: "NeueMontrealRegular", Arial, sans-serif;
  font-size: 15px; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; color: #fff; text-align: center; line-height: 1.6; margin: 8px 0;
}
.copyright p {
  font-family: "NeueMontrealRegular", Arial, sans-serif;
  font-size: 10px; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); text-align: center; line-height: 2.2;
}

/* Desktop: hide mobile-only elements */
.mobile-logo-bar      { display: none; }
.mobile-video-section { display: none; }
.mobile-content       { display: none; }
.mobile-footer        { display: none; }


@media (max-width: 1200px) and (min-width: 901px) {
    .heading {
        display: flex;
        flex-direction: column;
    }
}


/* ============================================================
   MOBILE & TABLET  ≤ 768px
   ============================================================ */
@media (max-width: 900px) {

  html, body { overflow-y: auto; overflow-x: hidden; height: auto; }

  /* Hide the entire desktop container */
  .container { display: none; }

  /* Show mobile sections */
  .mobile-logo-bar      { display: block; }
  .mobile-video-section { display: block; }
  .mobile-content       { display: block; }
  .mobile-footer        { display: block; }

  /* ── 1. BLACK LOGO BAR ───────────────────────────────────── */
  .mobile-logo-bar {
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    width: 100%;
  }
  .mobile-logo-bar img {
    width: 130px;
    display: block;
  }

  /* ── 2. TEXT HERO (replaces video on mobile/tablet) ─────── */
  .mobile-video-section {
    width: 100%;
    background: #000;
    padding: 60px 32px 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* Hide video & scroll icon — not used in text hero */
  .mobile-video-section video { display: none; }
  .mobile-scroll-icon          { display: none; }

  .mobile-hero-text {
    font-family: "NeueMontrealRegular", Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    /* text-align: center; */
    max-width: 480px;
    margin-bottom: 40px;
  }

  /* JOIN button — now static inside the flex column */
  .mobile-join-btn {
    position: static;
    transform: none;
    display: flex; justify-content: center; align-items: center;
    color: #fff;
    font-family: "NeueMontrealMedium", Arial, sans-serif;
    font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
    text-decoration: none; white-space: nowrap;
    width: 212px; height: 32px;
    border: 1px solid rgba(255,255,255,0.8); background: transparent;
    transition: background 0.25s ease, color 0.25s ease;
  }
  .mobile-join-btn:hover { background: #fff; color: #000; }

  /* ── 3. LIFE IN DISPLAY + DISCOVER ──────────────────────── */
  .mobile-content {
    width: 100%; background: #000;
    padding: 60px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .mobile-heading {
    font-size: 36px; line-height: 1.08;
    letter-spacing: 0.01em; text-align: left;
    margin-bottom: 36px;
    display: flex; flex-direction: column; gap: 2px;
  }
  .mobile-heading .line1 {
    font-family: "NeueMontrealMedium", Arial, sans-serif;
    font-weight: 500; text-transform: uppercase; color: #fff;
  }
  .mobile-heading .line2 {
    font-family: "RecklessNeue", serif;
    font-weight: 400; text-transform: uppercase; color: #fff;
  }
  .mobile-discover-btn {
    display: flex; justify-content: center; align-items: center;
    color: #fff;
    font-family: "NeueMontrealMedium", Arial, sans-serif;
    font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
    text-decoration: none;
    width: 212px; height: 32px;
    border: 1px solid rgba(255,255,255,0.75); background: transparent;
    transition: background 0.25s ease, color 0.25s ease;
  }
  .mobile-discover-btn:hover { background: #fff; color: #000; }

  /* ── 4. IMTIAZ + FOOTER ──────────────────────────────────── */
  .mobile-footer {
    width: 100%; background: #000;
    padding: 28px 28px 40px;
    display: flex; flex-direction: column; align-items: center;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mobile-footer .imtiaz-logo {
    width: 110px; height: auto; display: block; margin-bottom: 30px;
  }
  .mobile-footer .footer-contact {
    font-family: "NeueMontrealRegular", Arial, sans-serif;
    font-size: 11px; font-weight: 400; letter-spacing: 0.08em;
    text-transform: uppercase; color: #fff; text-align: center; line-height: 1.7;
    margin-bottom: 4px;
  }
  .mobile-footer .footer-copy {
    font-family: "NeueMontrealRegular", Arial, sans-serif;
    font-size: 8.5px; font-weight: 400; letter-spacing: 0.07em;
    text-transform: uppercase; color: rgba(255,255,255,0.45); text-align: center; line-height: 1.8;
  }
}

@media (max-width: 1200px) and (min-width: 769px) {

    
    
}