@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: 200px 60px 36px 60px;
  display: flex; flex-direction: column;
  justify-content: space-between; align-items: center;
  background: #000;
}

.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: 30px; line-height: 1.3;
  letter-spacing: 0.04em; text-align: center;
  margin-bottom: 42px; white-space: nowrap;
}
.heading-regular {
  font-family: "NeueMontrealMedium", Arial, sans-serif;
  font-weight: 500; text-transform: uppercase; color: #fff;
}
.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; align-items: center; 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: 768px) {
    .heading {
        display: flex;
        flex-direction: column;
    }
}


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

  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: auto;
    /* padding: 22px 22px 20px; */
    height: 150px;
    width: 100%;
  }
  .mobile-logo-bar img {
    width: 130px;
    display: block;
  }

  /* ── 2. VIDEO with JOIN button overlay ──────────────────── */
  /* .mobile-video-section {
    width: 100%;
    position: relative;
    background: #000;
    aspect-ratio: 9 / 14;
    overflow: hidden;
  }
  .mobile-video-section video {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center; display: block;
  } */


  .mobile-video-section {
  width: 100%;
  position: relative;
  background: #000;
  /* portrait ratio */
  aspect-ratio: 9 / 14;
  overflow: hidden;
}

/* Image styling */
.mobile-video-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Optional: if you want the image absolutely positioned like a video background */
.mobile-video-section img {
  position: absolute;
  top: 0;
  left: 0;
}

/* Scroll icon */
.mobile-scroll-icon {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  z-index: 2;
}

/* Join button */
.mobile-join-btn {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;

  padding: 12px 24px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 600;

}



  /* Scroll icon centered above button */
  .mobile-scroll-icon {
    position: absolute;
    left: 50%; transform: translateX(-50%);
    bottom: 72px;
    z-index: 5;
  }
  .mobile-scroll-icon svg {
    width: 24px; height: 24px; opacity: 0.85;
    animation: bobDown 1.8s ease-in-out infinite;
    display: block;
  }
  @keyframes bobDown {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(6px); }
  }

  /* JOIN button at bottom of video */
  .mobile-join-btn {
    position: absolute;
    bottom: 24px; left: 50%; transform: translateX(-50%);
    z-index: 10;
    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;
  }
}