.page-grid {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: 1.6rem;
}

/* Full-width first row */
.full-width {
  width: 100%;
  height: calc(100vh - 100px);
  min-height: calc(100vh - 100px);
  background: transparent;
}

.parallax-window.full-width {
  position: relative;
  width: 100%;
  height: calc(100vh - 100px);
  background: transparent;
  overflow: hidden;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none; /* Allows clicks to pass through if needed */
}

.parallax-overlay .welcome {
  font-size: 16rem;
  font-weight: 300;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0 !important;
  text-shadow: 0 0 17px rgb(0 0 0)
}


/* Each of the rows 2–5 */
.grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  height: calc(100vh - 105px);
}

/* Parallax background columns */
.parallax-window {
  width: 100%;
  height: 100%;
  background: transparent;
}

/* Text block column */
.text-block {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f6f6f6;
  padding: 3rem;
}

/* Centered content box inside text block */
.text-content {
  width: 100%;
  max-width: 40rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.text-content h2 {
  margin-bottom: 0;
  text-transform: uppercase;
}

.text-content p {
  margin-bottom: 1rem;
}
.text-content p:last-child {
  margin-bottom: 0;
}
/* Responsive for screens under 921px */
@media (max-width: 921px) {
  .grid-row {
    grid-template-columns: 1fr;
    height: auto;
  }
  .parallax-overlay .welcome {
    font-size: 10rem;
    font-weight: 400;
  }
  .parallax-window.full-width,
  .parallax-window, 
  .text-block {
    min-height: 30rem;
    height: 30rem;
  }
  .text-block {
    background-color: #fff;
  }
  .grid-row.reverse-order > *:first-child {
        order: 2;
    }
    .grid-row.reverse-order > *:last-child {
        order: 1;
    }
}
@media (max-width: 544px) {
    .parallax-overlay .welcome {
        font-size: 5rem;
        font-weight: 500;
    }
}