@charset "UTF-8";

.section-image-txt {
    background-image: url('/cbj/web/wjpn/include/img/main-f-5.gif'); /* 이미지 경로를 설정하세요 */
    background-size: cover; /* 화면 크기에 따라 이미지 크기를 조정 */
    background-position: center; /* 이미지 위치를 중앙으로 설정 */
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0; /* 상하 패딩 조정 */
}

.section-image-txt h1 {
    position: absolute;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* 텍스트 그림자 추가 */
    padding: 20px;
    z-index: 2; /* 오버레이보다 앞에 위치 */
}

.section-image-txt .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 반투명한 오버레이 */
    z-index: 1; /* 텍스트 뒤에 위치 */
}

.section-image-txt .top {
    top: 15px;
}

.section-image-txt .middle {
    top: 60%;
    transform: translate(-50%, -50%);
}

.section-image-txt .bottom {
    bottom: 20px;
    top: auto;
    transform: translateX(-50%);
}