/* static/css/new-members.css */
/* 새가족 안내 페이지 전용 스타일 */

/* Page Banner */
.new-members.page-banner {
    background: url(/static/images/introduction/introduction-banner.jpg) no-repeat center center;
    background-size: cover;
}

/* 메인 헤딩 섹션 */
.new-members-heading {
    background-color: rgba(140, 31, 31, 0.10);
    border-radius: 30px 0 30px 0;
    text-align: center;
    padding: 60px 5px;
    margin-bottom: 20px;
}

.new-members-heading .fa-solid.fa-quote-left {
    float: left;
    color: #fff;
    font-size: 120px;
    text-shadow: 1px 1px 5px rgba(128, 128, 128, 0.591);
    transform: translateY(-80%);
    opacity: 50%;
}

.new-members-heading .fa-solid.fa-quote-right {
    float: right;
    color: #fff;
    font-size: 120px;
    text-shadow: 1px 1px 5px rgba(128, 128, 128, 0.591);
    transform: translateY(-20%);
    opacity: 50%;
}

.new-members-heading h2, .new-members-heading h1 {
    font-family: var(--secondary-kr);
    margin: 0;
    transform: translateX(-20%);
}

.new-members-heading h2 {
    margin-bottom: 25px;
    font-weight: 600;
}

.new-members-heading h1 {
    color: var(--red-wine);
    font-weight: 600;
}

.new-members-heading h1 span {
    font-size: 28px;
    font-family: var(--secondary-kr);
}

img.jubilee-vector {
    float: left;
    transform: translate(-30%, 50%);
}

img.tree-vector {
    float: right;
    transform: translate(-170%,-20%);
    width: 90px;
}

img.tree2-vector {
    float: right;
    transform: translate(40%,-55%);
    width: 150px;
}

/* 등록 과정 섹션 */
.new-members-registration h1.sub-title {
    margin-bottom: 40px;
    text-align: center;
}

/* 새가족 등록 과정 - 세로 배치 */
.registration-process-vertical {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
    animation: floating-effect 2.5s;
}

.process-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 40px;
}

.process-icon-wrapper {
    flex-shrink: 0;
}

.process-description {
    flex: 1;
    text-align: left;
}

.process-description h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--black);
}

.process-description p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.process-description .btn-viewmore {
    margin-top: 0px;
    margin-bottom: 0px;
}

.process-arrow {
    font-size: 30px;
    color: var(--light-gray);
    margin: 20px 0 20px 90px;
}

/* 원형 아이콘 스타일 */
.registration-process-vertical .circle {
    width: 150px;
    height: 150px;
    border: 4px solid #000;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.registration-process-vertical .circle p {
    font-family: var(--tertiary-kr);
    font-size: 20px;
    margin: 0;
    padding: 10px 0 3px 0;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -1px;
    font-weight: 500;
}

.registration-process-vertical .circle i {
    font-size: 45px;
}

/* 각 단계별 색상 */
.visit-church.circle {
    border-color: var(--latte);
}

.visit-church.circle i {
    color: var(--latte);
}

.member-registration.circle {
    border-color: var(--deep-latte);
}

.member-registration.circle i {
    color: var(--deep-latte);
}

.new-membership.circle {
    border-color: var(--olive);
}

.new-membership.circle i {
    color: var(--olive);
}

.engaging-ceremony.circle {
    border-color: var(--dark-olive);
}

.engaging-ceremony.circle i {
    color: var(--dark-olive);
}

/* 교인 정의 섹션 */
.members-definition-container {
    background-color: white;
}

.members-definition {
    margin-bottom: 40px;
}

.members-definition h2, .new-membership-class h2 {
    padding-top: 50px;
    font-weight: 600;
}

.registered-definition, .engaged-definition {
    display: flex;
    align-items: flex-start;
}

.members-definition h4 {
    color: var(--deep-latte);
}

.members-definition ul {
    margin: 0;
    flex: 1;
}

.members-definition li {
    line-height: 1.5;
}

.engaged-definition {
    margin-top: 15px;
}

.engaged-definition ul li span {
    color: var(--red-wine);
}

.new-membership-class {
    padding-bottom: 70px;
}

.new-membership-class h2 {
    color: var(--red-wine);
}

.new-membership-class ul li {
    font-size: 20px;
    line-height: 1.5;
    list-style: circle;
}

.new-membership-class button, .process-description button {
    margin-top: 0;
}

.new-members.page-contents {
    padding-bottom: 0;
}

/* 반응형 디자인 - 모바일 */
@media(max-width:768px) {
    /* 페이지 콘텐츠 패딩 조정 */
    section .new-members.page-contents {
        padding: 20px 0;
    }

    /* 메인 헤딩 섹션 */
    .new-members-heading {
        position: relative;
        padding: 30px 15px 25px 15px;
        margin-bottom: 50px;
    }

    .new-members-heading .fa-solid.fa-quote-left, 
    .new-members-heading .fa-solid.fa-quote-right {
        display: none;
    }

    .new-members-heading h2, .new-members-heading h1 {
        transform: translate(0%,-30%);
    }

    .new-members-heading h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .new-members-heading h1 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .new-members-heading h1 span {
        font-size: 20px;
    }

    img.jubilee-vector {
        width: 240px;
        position: absolute;
        left: 0;
        top: 0;
        transform: translate(0%,10%);
    }

    img.tree-vector {
        position: absolute;
        width: 40px;
        right: 20%;
        bottom: -5%;
        transform: translate(0%);
    }

    img.tree2-vector {
        position: absolute;
        width: 60px;
        right: 3%;
        bottom: 0;
        transform: translate(0%);
    }

    /* 등록 과정 섹션 */
    .new-members-registration h1.sub-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .registration-process-vertical {
        padding: 20px 0;
    }

    .process-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
        gap: 20px;
    }

    .process-icon-wrapper {
        margin: 0 auto;
    }

    .process-description {
        text-align: center;
    }

    .process-description h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .process-description p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    /* 원형 아이콘 크기 조정 */
    .registration-process-vertical .circle {
        width: 100px;
        height: 100px;
        border: 3px solid #000;
    }

    .registration-process-vertical .circle p {
        font-size: 16px;
        padding: 8px 0 3px 0;
    }

    .registration-process-vertical .circle i {
        font-size: 32px;
    }

    .process-arrow {
        font-size: 24px;
        margin: 15px 0 15px 0;
    }

    /* 버튼 스타일 */
    .process-description .btn-viewmore {
        width: 160px;
        padding: 8px;
        font-size: 18px;
    }

    /* 교인 정의 섹션 */
    .members-definition h2, .new-membership-class h2 {
        font-size: 26px;
        padding-top: 30px;
    }

    .registered-definition, .engaged-definition {
        flex-direction: column;
        align-items: center;
    }

    .members-definition h4 {
        padding-top: 10px;
        margin-bottom: 10px;
        font-size: 18px;
    }

    .members-definition ul {
        text-align-last: left;
        padding-left: 20px;
    }

    .members-definition li {
        font-size: 16px;
    }

    .new-membership-class {
        padding-bottom: 30px;
        margin-top: 10px;
    }

    .new-membership-class ul {
        text-align-last: left;
        padding-left: 20px;
    }

    .new-membership-class ul li {
        font-size: 16px;
    }

    .new-membership-class button {
        margin-bottom: 20px;
    }
    
    /* 각 단계별 색상 */
    .visit-church.circle {
        border-color: var(--latte);
    }
    
    .visit-church.circle i {
        color: var(--latte);
    }
    
    .member-registration.circle {
        border-color: var(--deep-latte);
    }
    
    .member-registration.circle i {
        color: var(--deep-latte);
    }
    
    .new-membership.circle {
        border-color: var(--olive);
    }
    
    .new-membership.circle i {
        color: var(--olive);
    }
    
    .engaging-ceremony.circle {
        border-color: var(--dark-olive);
    }
    
    .engaging-ceremony.circle i {
        color: var(--dark-olive);
    }
}