/* 3. Pseudo-element untuk gambar RSUD Sofifi di bawah */
/* 2. Setup body agar bisa memuat gambar di bawah */
body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  background-color: var(--background-muted);
  /* tulis margin/padding sesuai layout-mu */
}
body {
  position: relative;
  z-index: 0;
}

body::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;

  /* Urutan: gambar teratas → gambar tengah → gambar paling bawah */
  background-image: 
    url('/images/rsudsofifi.png'),
    url('/images/rsudsofifi.png'),
    url('/images/rsudsofifi.png');  /* gambar1 */

  background-repeat: no-repeat, no-repeat, no-repeat;

  /* Posisi Y masing-masing */
  background-position:
    /* gambar3 */ bottom 900px center,
    /* gambar2 */ bottom 600px center,
    /* gambar1 */ bottom 200px  center;

  /* Ukuran masing-masing */
  background-size:
    contain,    /* gambar3 */
    contain, /* gambar2 */
    contain;    /* gambar1 */

  opacity: 0.3;
}
