/* === ABOUT PAGE SCROLL EFFECT STYLES === */

/* Hide default scrollbar */
body {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, and Opera */
}

.scroll-container {
  width: 100%;
  height: 300vh; /* Taller to allow for a 3-part scroll animation */
  position: relative;
}

.sticky-container {
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  overflow: hidden;
}

.left-side-col,
.right-side-col {
  width: 50%;
  height: 100%;
  position: relative;
}

.left-side-col {
  background-color: #000;
  color: #fff;
}

.right-side-col {
  background: linear-gradient(
    160deg,
    rgba(240, 240, 240, 1) 0%,
    rgba(244, 189, 239, 1) 100%
  );
  color: #111;
}

.left-content,
.right-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 4rem;
  flex-direction: column;
}

/* === Section Specific Styles === */
.left-content {
  align-items: flex-start;
  text-align: left;
}

.right-content {
  align-items: flex-start;
  text-align: left;
}

h1 {
  font-family: "texgyreheros", sans-serif;
  font-style: oblique;
  font-weight: bold;
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: -0.1rem;
  margin-bottom: 2rem;
}

p {
  font-family: "ABCDiatype", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 50ch;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.section-1-r .bg-text {
  font-family: "texgyreheros", sans-serif;
  font-weight: bold;
  font-size: 30vw;
  color: rgba(0,0,0,0.05);
  line-height: 1;
  text-align: center;
  width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  /* Keep the split-screen layout, but adjust padding and fonts for mobile */
  .left-content, .right-content {
    padding: 1.5rem;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3rem); /* Make h1 smaller on mobile */
  }

  p {
    font-size: 0.9rem; /* Make paragraph text smaller */
  }
}