/* 배경 도형 스타일 */
.background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* 파티클보다 낮지만, 다른 콘텐츠 위에 나타나도록 설정 */
    overflow: hidden;
    pointer-events: none; /* 배경 도형이 클릭 이벤트를 차단하지 않도록 설정 */
}

.shape {
    position: absolute;
    background-color: rgba(226, 214, 237, 0.2); /* 짙은 보라색의 투명도 적용 */
    border-radius: 50%;
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 10%;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 15%;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 50%;
}

/* 애니메이션 */
.shape-1, .shape-2, .shape-3 {
    animation: float 6s ease-in-out infinite alternate;
}

@keyframes float {
    from {
        transform: translateY(0) scale(1);
    }
    to {
        transform: translateY(-20px) scale(1.1);
    }
}




#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 11;  /* 배경으로 위치시킴 */
    background-color: transparent;  /* 배경 투명 */
    pointer-events: none; /* 파티클 클릭 차단 */
}

#particles-container {
    position: relative;
    z-index: 1; /* 파티클이 다른 콘텐츠 아래에 위치하지 않도록 설정 */
}

#particles-js2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1; /* 컨텐츠 아래에 위치 */
    pointer-events: none; /* 파티클이 클릭 이벤트를 차단하지 않도록 설정 */
    background-color: transparent; /* 배경을 투명하게 유지 */
}

#particles-js3 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1; /* 컨텐츠 아래에 위치 */
    /* pointer-events: none; 파티클이 클릭 이벤트를 차단하지 않도록 설정 */
    background-color: transparent; /* 배경을 투명하게 유지 */
}

