.reasons-page {
  width: 100vw;
  height: 100vh;
  background-color: #ffdce0;
  background-image: url('images/reasonss-bg.png'); /* optional scrapbook texture */
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  overflow: hidden;
}

/* back button */
.back-button {
  position: absolute;
  top: 20px;
  left: 20px;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  background: rgba(255, 160, 200, 0.8);
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.back-button:hover {
  background: rgba(255, 160, 200, 1);
}

/* reason box styling */
.reason-box {
  background: rgba(255, 255, 255, 0.85); /* paper effect */
  padding: 30px 40px;
  border-radius: 16px;
  font-size: 20px;
  max-width: 800px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.reason-box.show {
  opacity: 1;
}

/* next button */
#next-btn {
  margin-top: 20px;
  padding: 8px 16px;
  font-size: 18px;
  border-radius: 10px;
  border: none;
  background: #ff6699;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}

#next-btn:hover {
  background: #ff3c82;
}
