﻿/* =====================================================
   PAGE SECTIONS
   ===================================================== */

.pages-wrapper {
  width: 100%;
  position: relative;
}

.pages-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: var(--ci-watermark-color);
  -webkit-mask-image: url('../images/splash_01.svg');
  mask-image: url('../images/splash_01.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center 55vh;
  mask-position: center 55vh;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
}

#page2 {
  min-height: 50vh;
}

#page3 {
  background-repeat: no-repeat;
  background-position: center 30vh;
  background-size: 100% auto;
}

.flexible-space {
  height: 50vh;
  min-height: unset;
  scroll-snap-align: none;
  pointer-events: none;
}

.page {
  scroll-snap-align: start;
  scroll-margin-top: var(--shadow-helper-visible, 100px);
  padding-top: 60px;
  min-height: 50vh;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  display: block;
  /*
  display: flex;
  align-items: center;
  justify-content: center;
  */
  position: relative;
  z-index: 1;
  background-color: transparent;
  transition: background-color var(--transition-medium);
  overflow: visible; /* Prevent clipping of nav-circles */
  
}


.page-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 90vw;
  max-width: 1200px;
  height: 90%;
  padding: var(--spacing-m) 5vw;
  margin: var(--spacing-m) auto;
  gap: 0;
  box-sizing: border-box;
  position: relative;
  z-index: 10; /* Lowered to avoid masking nav-circles */
}

