body {
  margin: 0;
  background: black;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* Base division styles */
.division {
  width: 100vw;
  height: 100vh;
  position: relative;
}

/* Division 01: bg image + text top-left */
.division-01 {
  background-image: url('images/section01.png'); /* Update path if needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100vw;
  position: relative;
  z-index: 0;
}

.division-01 .center-text {
  position: absolute;
  top: 20px;
  left: 20px;
  color: white;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
  z-index: 10;
}

.division-01 .center-text h1 {
  font-weight: 600;
  font-size: 4rem;
  margin: 0 0 0.2em 0;
  letter-spacing: 0.05em;
}

.division-01 .center-text p {
  font-weight: 300;
  font-size: 1.5rem;
  margin: 0;
  line-height: 1.4;
}

.division-01 .center-text .small-text {
  margin-top: 0.6em;
  font-weight: 300;
  font-size: 1.1rem;
  opacity: 0.7;
}

/* Division 02: canvas + overlay texts */
.division-02 {
  position: relative;
  overflow: hidden;
  height: 100vh; /* Full viewport height */
}

/* Canvas styling */
#sequence-canvas {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: auto;
  z-index: 1;
  background: black;
}

/* Texts over canvas */
.canvas-text {
  position: absolute;
  color: white;
  font-family: 'Poppins', sans-serif;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
  z-index: 10;
  max-width: 40vw;
  font-weight: 600;
}

.canvas-text.top-left {
  top: 20px;
  left: 20px;
  font-size: 2rem;
  text-align: left;
}

.canvas-text.bottom-right {
  bottom: 20px;
  right: 20px;
  font-size: 1.3rem;
  text-align: right;
  font-weight: 300;
}

/* Division 03: full screen bg image + centered text */
.division-03 {
  height: 100vh;
  width: 100vw;
  background-image: url('images/section02.png'); /* Update path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
  padding: 20px;
  box-sizing: border-box;
}

.division-03 .center-text-3 h1 {
  font-weight: 600;
  font-size: 3.5rem;
  margin-bottom: 0.5em;
}

.division-03 .center-text-3 p {
  font-weight: 300;
  font-size: 1.6rem;
  margin: 0.3em 0;
  line-height: 1.3;
}
