

/* ===============================
   GLOBAL BASICS
=============================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: white;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  color: #111;
}

/* vertical site frame */
.page {
  padding-left: 6vw;
  padding-right: 6vw;
}

.text-strong {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.2;
}

.text-stdNun {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  color: rgb(255, 255, 255);
  font-size: 1.2rem;
  line-height: 1.4;
}

.text-normal {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.text-body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.4;
  color: black; /* 👈 key line */
  max-width: 42ch;
}

.slide-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.parallax {
  transform: translateY(var(--parallax-offset, 0px));
}

/* ===============================
   HERO
=============================== */

.hero {
  height: 95vh;
  margin-bottom: 10vh;
}

.hero-frame {
  position: relative;
  height: 100%;
  border-left: 4px solid #111;
  border-right: 4px solid #111;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4rem;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent 50%);
  color: white;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-text {
  position: absolute;
    width: 68%;
  left: 36%;
  top: 57vh;

}



.text-secondary {
  margin-top: 0.0rem;
}

.text-box {
  margin-top: 1.0rem;
  padding: 1rem;
  max-width: 85%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.251);
  font-size: 0.95rem;
}

/* ===============================
   ICONS
=============================== */

.icons-section {
  width: 100%;
  margin-bottom: 12vh;
  padding-left: 6vw;
  padding-right: 6vw;
}

.icons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 3vw;
}

.icon-card img {
  height: 48px;
  width: auto;
  margin-bottom: 1rem;
}


.icon-card img {
  height: 40%;
  margin-bottom: 1rem;
}

.icon-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.icon-desc {
  font-size: 0.9rem;
}

/* ===============================
   PAGE SECTIONS
=============================== */

.page-section.section-one {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-bottom: 12vh;
}

.page-section.section-two {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding-bottom: 20vh; /* ensures next section starts after */
}

/* ===============================
   SECTION ONE — IMAGE A
=============================== */

.section-one-image-a {
  position: absolute;
  left: 4vw;
  top: 45vh;
  width: 30%;
}

.section-one-image-a img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===============================
   SECTION ONE — IMAGE B
=============================== */

.section-one-image-b {
  position: absolute;
  right: 3vw;
  top: 2vh;
  width: 30%;
}

.section-one-image-b img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===============================
   SECTION TWO — IMAGE A
=============================== */

.section-two-image-a {
  position: absolute;
  left: 4vw;
  top: 55vh;
  width: 30%;
}

.section-two-image-a img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===============================
   SECTION TWO — IMAGE B
=============================== */

.section-two-image-b {
  position: absolute;
  right: 3vw;
  top: 0vh;
  width: 30%;
  min-width: 30%;
}

.section-two-image-b img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===============================
   TEXT BLOCKS — SECTION ONE
=============================== */

.section-one-text-a {
  position: absolute;
  right: 35vw;
  top: 8vh;
  min-width: 40%;
  max-width: 50%;
  text-align: right;
  color: #111;
}

.section-one-text-b {
  position: absolute;
  right: 14vw;
  max-width: 50%;
  min-width: 40%;
  top: 76vh;
  color: #111;
}

/* ===============================
   TEXT BLOCKS — SECTION TWO
=============================== */

.section-two-text-a {
  position: absolute;
  right: 36vw;
  top:18vh;
  min-width: 55vw;
  max-width: 42ch;
  text-align: right;
  color: #111;
}

.section-two-text-b {
  position: absolute;
  right: 4vw;
  top: 85vh;
  min-width: 60%;
  max-width: 42ch;
  color: #111;
}

/* ===============================
   TEXT ELEMENTS (shared)
=============================== */

.page-section h2 {
  margin-bottom: 0.75rem;
  color: #000;
}

.page-section p {
  margin-top: 0.5rem;
  line-height: 1.45;
  color: #000;
}


/* ===============================
   FULL IMAGE
=============================== */

.full-image {
  margin-top: 40vh; /* ← increase until it clears section-two */
  height: 90vh;
  margin-bottom: 12vh;
}

.full-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===============================
   STATUS + CONTACT
=============================== */
/* ===============================
   OVERLAY FULLSCREEN SECTIONS
=============================== */

.overlay-image-section {
  position: relative;
  width: 100%;
  height: 100vh;          /* full screen */
  margin-top: 0;          /* stacks naturally */
  overflow: hidden;

}

/* background image */
.overlay-image-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===============================
   TRANSLUCENT TEXT BUBBLE
=============================== */

.overlay-card {
  position: absolute;
  max-width: 42ch;
  padding: 2.5rem 3rem;
  border-radius: 18px;


  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);

  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
  color: #ffffff;
}

/* typography consistency */
.overlay-card h3 {
  margin-bottom: 0.75rem;
}

.overlay-card p {
  line-height: 1.45;
}

/* ===============================
   POSITION VARIANTS
=============================== */

/* first page: left / mid */
.overlay-left {
  left: 6vw;
  top: 35vh;
}

/* second page: center */
.overlay-center {
  left: 25%;
  top: 10%;
  transform: translate(-50%, -50%);
}

/* optional future positions */
.overlay-right {
  right: 6vw;
  top: 35vh;
}

.overlay-bottom {
  left: 50%;
  bottom: 10vh;
  transform: translateX(-50%);
}


/* ===============================
   MOTION HOOKS
=============================== */

.parallax {
  will-change: transform;
}

.slide-in {
  opacity: 0;
  transform: translateY(40px);
}

/* ======================================================
   FOOTER
====================================================== */
.footer {  background: var(--white);  color: var(--navy);  padding: 50px 0;}
.footer-inner {  width: 80%;  margin: 0 auto;}
.footer-columns {  display: flex;  justify-content: space-between;  flex-wrap: wrap;  gap: 24px;}
.footer-col h4 {  font-size: 0.8rem;  font-weight: 700;}
.footer-col a {  font-size: 0.7rem;  opacity: 0.85;  text-decoration: none;  color: var(--navy);}

/* ======================================================
   POPUP
====================================================== */
.popup {  position: fixed;  inset: 0;  background: rgba(0,0,0,0.55);  display: flex;  justify-content: center;  align-items: center;
  opacity: 0;  pointer-events: none;  transition: opacity 0.25s ease;  z-index: 99999;}

.popup.show {  opacity: 1;  pointer-events: auto;}

/* ======================================================
   ANIMATIONS (UNCHANGED)
====================================================== */
.fade { opacity: 0; }
.fade-slide { opacity: 0; transform: translateY(20px);  opacity: 0;  transform: translateY(40px); }
.fade-scale { opacity: 0; transform: scale(0.95); }
.overlay-card {
  opacity: 0;
  transform: translateY(30px);
}

/* ===============================
   MOBILE
=============================== */

@media (max-width: 900px) {
  .page {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .icons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .hero-overlay {
    padding: 2rem;
  }
}

