/* ============================================================
   SUNRISE BACKGROUND — My New Dawn Hypnotherapy
   Gulf of Mexico dawn, canvas + overlay layering
   ============================================================ */

#sunrise-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  will-change: transform;
  display: block;
}

/* Text-readability overlay — graduated opacity */
.sunrise-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 5, 20, 0.55) 0%,
    rgba(8, 5, 20, 0.35) 35%,
    rgba(8, 5, 20, 0.50) 65%,
    rgba(8, 5, 20, 0.75) 100%
  );
  pointer-events: none;
}

/* All page content sits above the overlay */
body > *:not(#sunrise-canvas):not(.sunrise-overlay) {
  position: relative;
  z-index: 1;
}
