/*
Theme Name: Hello Elementor Child
Template: hello-elementor
*/

body {
  /* 기본 스타일 예시 */
  position: relative;
}

/* 기본 설정 */
body.page-id-15 {
  transition: background-color 1s ease-in-out;
  will-change: background-color;
}

#background-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -9999; /* ✅ 어드민바보다 뒤로 */
  background-color: #80d8ff;
  transition: background-color 1s ease-in-out;
  will-change: background-color;
}

body:not(.page-id-15) {
  background-color: #80d8ff;
}