#index1{
    position: relative;
    height: 526px;
}
#index1_background{
    width: 100%;
    height: 100%;
}
#index1_background_black{
    background-color: #000000;
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    opacity: 0.46;
}
#index1_background img{
    width: 100%;
    height: 100%;
}
#index1_text{
    position: absolute;
    top: 0px;
    right: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* width: 100%; */
    height: 100%;
}
#index1_text_1{
    color: #FFFFFF;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.194em;
    letter-spacing: 0px;
    width: 100%;
}
#index1_text_2{
    color: #00FFDD;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 56px;
    line-height: 1.194em;
    letter-spacing: 1.8px;
    width: 100%;
}
#index1_text_3{
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.625em;
    letter-spacing: 0.5px;
    color: #FFFFFF;
    width: 100%;
    margin-top:20px;
}

/* 예배 안내 */
#worship2{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 60px;
}
#worship2_welcome{
    margin-top:140px;
    text-align: center;
    font-size: 14px;
    letter-spacing: 10px;
    padding-bottom: 25px;
    border-bottom: 3px solid #61CE70;;
    width: 200px;
}
#worship2_title{
    font-size: 40px;
    font-weight: 200;
    letter-spacing: 5px;
    margin-top: 45px;
    margin-bottom: 60px;
}
#worship2_content{
    display:grid;
    grid-template-columns: 1fr 1fr;
    font-size: 16px;
    font-weight: 600;
    color: #54595f;
    column-gap: 10%;
    word-break: keep-all;
}
.worship2_contents{
    margin-bottom: 50px;
}
.worship2_contents > div{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
}
.worship2_contents_dots{
    border-bottom-style: dotted;
    border-bottom-width: 1px;
    border-bottom-color: #CBCBCB;
    flex-grow: 1;
    height: 0;
    margin-left: 10px;
    margin-right: 10px;
}
.worship2_contents_description{
    font-weight: 400;
    font-size: 14px;
    color: #54595F;
    margin-top: 12px;
}

#map_wrapper{
    margin:auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}
#index_map_title{
    font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
    margin-top:140px;
    margin-bottom:60px;
    text-align: center;
    font-size: 14px;
    letter-spacing: 10px;
    padding-bottom: 25px;
    border-bottom: 3px solid #61CE70;;
    width: 200px;
}
#index_map_address{
    color: #7A7A7A;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 40px;
}
#map_container{
    position: relative;
    width: 80%;           /* Adjust width as needed */
    margin: 0 auto;
    padding-bottom: 70%;  /* 4:3 aspect ratio → 3/4 = 75% */
    height: 0;
}
#map {
    position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
}
#index_bottom_image_wrapper{
    display: grid;
    max-width: 90%;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin: auto;
    margin-bottom: 80px;
    gap: 10px;
}

#index_bottom_image_wrapper > img{
    height: 200px;         /* fixed height for all images */
    width: 100%;     
    min-height:100%
}
/* Mobile */
@media only screen and (max-width:480px) {
    #index1_text{
        margin-left: 10%;
    }
    #index1_text_2{
        word-break: keep-all;
    }
    #index_bottom_image_wrapper{
        grid-template-columns: 1fr;
    }
    #worship2_content{
        width: 85%;
        grid-template-columns: 1fr;
    }
}