/* --------------- Event Banner Section --------------- */

.event-banner{
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    height: 720px;
    margin: 0px auto 48px;
    position: relative;
    /* Old Banner Div Css
    gap:24px
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 12.18%, rgba(0, 0, 0, 0.00) 63.44%), center / cover url(../elements/pictures/event-3.png);
    */
}

.event-banner .linear-gradient{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 12.18%, rgba(0, 0, 0, 0.00) 63.44%);
    width: 100%;
    height: 100%;
}

.event-banner img{
    position:relative;
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.event-banner .event-brief{
    display: flex;
    flex-direction: column;
    max-width: 1366px;
    width: 100%;
    position: absolute;
    left: calc(50%-1366px);
    padding: 24px;
    gap: 12px;
}

.activity-overview{
    display: flex;
    gap: 48px;
    align-items: center;
    flex-shrink: 0;
    width: 100%;
}

.event-description{
    width: 100%;
    color: var(--BnW-1, #F2F2F2);
    font-family: "Microsoft JhengHei";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 30px */
}

.event-name{
    color: #F2F2F2;

    /* Title/H2 */
    font-family: Microsoft JhengHei;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 76.8px */
}

.tag-box{
    display: flex;
    justify-content: center;
    gap: 12px;
}

.tag-box .tag{
    display: flex;
    padding: 12px 24px;
    gap: 10px;
    border-radius: 12px;
}

.tag-box .tag.play{
    background: var(--major-yellow-main, #F0C11B);
}

.tag-box .tag.pray{
    background: var(--major-blue-main, #45BAEC);
}

.tag-box .tag.partner{
    background: var(--major-blue-red, #EB5231);
}

.tag-box .tag.inactive{
    display: none;
}

.tag-box .tag .text{
    color: #FFF;
    text-align: center;
    font-family: Microsoft JhengHei;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

/* --------------- Activity Details Section --------------- */

.activity-details{
    display: flex;
    max-width: 1366px;
    margin: 0px auto 48px;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 5px 2px 8.4px 0px rgba(0, 0, 0, 0.10);
}

.details{
    display: flex;
    gap: 8px;
    align-items: center;
    align-self: stretch;
}

.activity-details .content{
    color: var(--BnW-4, #999);
    font-family: "Microsoft JhengHei";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.activity-details .details .icon{
    display:block;
    width: 40px;
    height: 40px;
    color: transparent;
}

.activity-details .details.date .icon{
    background: center / contain no-repeat  url(../elements/icons/event/calendar.svg);
}

.activity-details .details.city .icon{
    background: center / contain no-repeat  url(../elements/icons/event/map.svg);
}

.activity-details .details.location .icon{
    background: center / contain no-repeat  url(../elements/icons/event/map-marker.svg);
}

.activity-details .details.audience .icon{
    background: center / contain no-repeat url(../elements/icons/event/human.svg);
}

.activity-details .details.deadline .icon{
    background: center / contain no-repeat url(../elements/icons/event/clock-forward.svg);
}

.sign-up-btn{
    display: flex;
    padding: 16px 48px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 100px;
    border: 2px solid var(--Major-Blue-Main, #45BAEC);

    color: var(--Major-Blue-Main, #45BAEC);
    text-align: center;
    font-family: "Microsoft JhengHei";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 24px */
}

.sign-up-btn:hover{
    color:#DAF1FB;
    border: 2px solid #0E252F;
    background-color: #0E252F;
}

@media (max-width:1366px) {
    .event-banner{
        height: 540px;
        margin: 0px 0px 48px;
    }
    .activity-details{
        margin: 0px 48px 48px;
        padding: 24px;
        border-radius: 12px;
        box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.10);
    }
    .event-banner .event-brief{
        left: 0px;
    }
    .activity-details .content{
        font-size: 18px;
    }
    .activity-details .details .icon{
        width: 24px;
        height: 24px;
    }
    .event-name{
        font-size: 48px;
    }
    .tag-box .tag{
        padding: 8px 24px;
        border-radius: 8px;
    }
    .tag-box .tag .text{
        font-size: 18px;
    }
}

@media (max-width:1024px) {
    .event-banner{
        height: 480px;
        margin: 0px 0px 48px;
    }
    .activity-details .content{
        font-size: 16px;
    }
    .activity-details{
        margin: 0px 24px 48px;
        padding: 16px;
        border-radius: 8px;
        box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.10);
    }
    .activity-details .details{
        flex-direction: column;
    }
    .event-description{
        font-size: 16px;
    }
    .event-name{
        font-size: 36px;
    }
    .sign-up-btn{
        font-size: 16px;
        padding: 12px 40px;
    }
    .tag-box .tag{
        padding: 8px 24px;
        border-radius: 8px;
    }
    .tag-box .tag .text{
        font-size: 16px;
    }
    .activity-details .details-list .subtitle{
        font-size: 14px;
    }
    .activity-details .details-list .content{
        font-size: 16px;
        font-weight: 700;
    }
}

@media (max-width:768px) {
    .event-banner{
        height: 320px;
        margin: 0px 0px 48px;
        border-radius: 0px;
    }
    .event-banner .event-brief{
        padding: 16px;
    }
    .event-name{
        font-size: 28px;
    }
    .tag-box .tag{
        padding: 8px 16px;
        border-radius: 8px;
    }
    .tag-box .tag .text{
        font-size: 14px;
    }
    .sign-up-btn{
        position: fixed;
        left: 50%;
        margin-left: -74px;
        bottom: 40px;
        color:#DAF1FB;
        border: 2px solid #45BAEC;
        background-color: #45BAEC;
    }
    .activity-details{
        margin: 0 16px 48px;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 24px;

    }
    .activity-details .details{
        flex-direction: row;
    }
    .activity-details .details-list .content{
        font-size: 16px;
        font-weight: 400;
        text-align: center;
        width: 100%;
    }
}

@media (max-width:414px) {
    .event-banner{
        height: 240px;
        margin: 0px 0px 48px;
        border-radius: 0px;
    }
    .event-banner .event-brief .event-description{
        display: none;
    }
    .activity-details .details-list{
        flex-wrap: wrap;
    }
    .activity-details .details{
        gap: 4px;
        min-width: 120px;
        max-width: 140px;
    }
    .activity-details .details-list .content{
        font-size: 14px;
    }
    .activity-details .details .icon{
        width: 20px;
        height: 20px;
    }
    
}

/* --------------- Activity Content Section --------------- */

.activity-content{
    display: flex;
    flex-direction: column;
    max-width: 1366px;
    margin: 0px auto 48px;
    padding: 0 48px;
    gap: 48px;
}

.activity-content .introduction img{
    width: 100%;
    height: auto;
}

.activity-content .introduction, .activity-content .coordinators, .activity-content .comments{
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-self: stretch;
}

.activity-content h3{
    display: flex;
    padding-bottom: 8px;  
    align-items: center;    
    border-bottom: 2px solid var(--BnW-2, #D9D9D9);

    color: var(--BnW-4, #999);

    /* Subtitles/Bold */
    font-family: "Microsoft JhengHei";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 30px */
}

.activity-content p{
    color: rgba(0, 0, 0, 0.75);
    font-family: "Microsoft JhengHei";
    font-size: 20px;
    font-style: normal;
    font-weight: 290;
    line-height: 140%; /* 33.6px */
}

.activity-content .coordinator-list{
    display: flex;
    justify-content: space-between;
}

.activity-content .coordinator{
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1 0 0;
}

.activity-content .coordinator .icon{
    width: 120px;
    height: 120px;
    border-radius: 100%;
}

.activity-content .coordinator .icon{
    object-fit: cover;
    object-position: center center;
}

.activity-content .coordinator .profile{
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1 0 0;
}

.activity-content .coordinator .profile .namebox{
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.activity-content .coordinator .profile .namebox .role{
    color: rgba(0, 0, 0, 0.50);

    /* Paragraphs/Bold 16px */
    font-family: "Microsoft JhengHei";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 24px */
}

.activity-content .coordinator .profile .namebox .name{
    color: #000;

    /* Subtitles/Bold */
    font-family: "Microsoft JhengHei";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 30px */
}

.activity-content .coordinator .profile .details{
    color: #000;
    font-family: "Microsoft JhengHei";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.activity-content .comment-box{
    display: flex;
    gap: 24px;
    align-self: stretch;
    margin-bottom: 48px;
}

.activity-content .comment-box img{
    width: 54px;
    height: 54px;
    border-radius: 100%;
}

.activity-content .comment{
    display: flex;
    flex-direction: column;
}

.activity-content .comment .title{
    color: #000;

    /* Subtitles/Regular */
    font-family: "Microsoft JhengHei";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%; /* 30px */
}

.activity-content .comment .name-date{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    align-self: stretch;
    margin-bottom: 16px;
}

.activity-content .comment .name-date .name{
    color: var(--BnW-5, #808080);

    /* Paragraphs/Light */
    font-family: "Microsoft JhengHei";
    font-size: 18px;
    font-style: normal;
    font-weight: 290;
    line-height: 150%; /* 30px */
}

.activity-content .comment .name-date .date{
    color: rgba(0, 0, 0, 0.25);

    /* Paragraphs/Light */
    font-family: "Microsoft JhengHei";
    font-size: 18px;
    font-style: normal;
    font-weight: 290;
    line-height: 150%; /* 30px */
}

.activity-content .comment .details{
    color: var(--BnW-7, #404040);
    font-family: "Microsoft JhengHei";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width:1366px) {
    .activity-content .coordinators .coordinator .profile .role{
        font-size: 14px;
    }
    .activity-content .coordinators .coordinator .profile .name{
        font-size: 18px;
    }
    .activity-content .coordinators .coordinator .profile .details{
        font-size: 18px;
    }
}

@media (max-width:1024px) {
    .activity-content{
        padding: 0 24px;
    }
    .activity-content .comment-box{
        margin-bottom: 24px;
    }  
    .activity-content .comment .name-date .name,
    .activity-content .comment .name-date .date{
        font-size: 16px;
    }
    .activity-content .comment .title{
        font-size: 20px;
    }
    .activity-content .comment .details{
        font-size: 18px;
    }

}

@media (max-width:768px) {
    .activity-content{
        padding: 0 16px;

        h3,p{
            font-size: 18px;
        }
    }
    .activity-content .coordinator-list{
        flex-direction: column;
        gap: 24px;
    }
    .coordinators .coordinator .icon{
        width: 96px;
        height: 96px;
    }

    .activity-content .coordinators .coordinator .profile .role{
        font-size: 12px;
    }
    .activity-content .coordinators .coordinator .profile .name{
        font-size: 16px;
    }
    .activity-content .coordinators .coordinator .profile .details{
        font-size: 16px;
    }
        .activity-content .comment .name-date .name,
    .activity-content .comment .name-date .date{
        font-size: 14px;
    }
    .activity-content .comment .title{
        font-size: 18px;
    }
    .activity-content .comment .details{
        font-size: 16px;
    }
}

/* --------------- Other Activities Section --------------- */

.others{
    display: flex;
    max-width: 1366px;
    margin: 72px auto 48px;
    flex-direction: column;
    gap: 36px;
}

.others p{
    align-self: stretch;
    color: #000;

    /* Title/H3 */
    font-family: Microsoft JhengHei;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 57.6px */
    letter-spacing: -1.92px;
}

.activity{
    display: flex;
    gap: 1%;
}

.activity-box{
    display: flex;
    height: 400px;
    width: 50%;
    margin-bottom: 1%;
    flex-direction: column;
    border-radius: 12px;
    border: 1.5px solid var(--bn-w-3, #BFBFBF);
}

.cover-photo{
    display: flex;
    padding: 16px;
    gap: 8px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 12px 12px 0px 0px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.00) 25%), url(../elements/pictures/event-2.png), lightgray 0px -304.636px / 100% 198.19% no-repeat;
    background-size: cover;
}

.activity-box .tag-list{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    height: fit-content;
}

.activity-box .tag{
    display: flex;
    padding: 6px 16px;
    height: fit-content;
    border-radius: 100px;
    color: #FFF;

    /* Subtitles/Bold */
    font-family: Microsoft JhengHei;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 30px */
}

.activity-box .tag.play{
    background: var(--major-yellow-main, #F0C11B);
}

.activity-box .tag.pray{
    background: var(--major-blue-main, #45BAEC);
}

.activity-box .tag.age{
    background: var(--major-blue-main, #F2F2F2);
    color: var(--bn-w-9, #0D0D0D);
}

.activity-box .description{
    display: flex;
    align-items: center;
    align-self: stretch;
    background: var(--bn-w-1, #F2F2F2);
}

.activity-box .titlebox{
    display: flex;
    padding: 12px 16px;
    flex-direction: column;
    gap: 4px;
}

.activity-box .title{
    color: #000;

    /* Title/H4 */
    font-family: Microsoft JhengHei;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 43.2px */
    letter-spacing: -0.72px;
}

.activity-box .date{
    color: #000;

    /* Body/Light */
    font-family: Microsoft JhengHei;
    font-size: 16px;
    font-style: normal;
    font-weight: 290;
    line-height: 150%; /* 18px */
}

.activity-box .icon{
    width: 24px;
    height: 0px;
    stroke-width: 3px;
    stroke: var(--bn-w-1, #F2F2F2);
}

@media(max-width:1366px){
    .others{
        margin: 48px;
        gap: 24px;
    }
    .others p{
        font-size: 28px;
    }
    .activity{
        padding: 0;
        gap: 1%;
    }
    .activity-box{
        height: 320px;
        width: 45%;
        margin-bottom: 1%;
        border-radius: 12px;
        border: 1.5px solid var(--bn-w-3, #BFBFBF);
    }
    .cover-photo{
        padding: 16px;
        gap: 8px;
        border-radius: 12px 12px 0px 0px;
        flex-wrap: wrap;
    }
    .activity-box .tag{
        padding: 6px 16px;
        color: #FFF;
        font-size: 12px;
        font-weight: 700;
    }
    .activity-box .titlebox{
        padding: 12px 16px;
        gap: 4px;
    }
    .activity-box .title{
        font-size: 20px;
        font-weight: 700;
    }
    .activity-box .date{
        font-size: 14px;
    }
    .activity-box .icon{
        width: 24px;
        height: 0px;
        stroke-width: 3px;
        border: 1.50px #F2F2F2 solid;
    }
}

@media (max-width:1024px) {
    .activity{
        gap: 2%;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
    }
    .activity-box{
        height: 320px;
        min-width: 40%;
        margin-bottom: 2%;
        border-radius: 12px;
        border: 1.5px solid var(--bn-w-3, #BFBFBF);
    }
}

@media (max-width:768px) {
    .others{
        margin: 24px 24px 48px;
        gap: 24px;
    }
    .activity{
        gap: 2%;
    }
    .activity-box{
        height: 240px;
        min-width: 45%;
    }
    .cover-photo{
        padding: 12px;
        gap: 8px;
        border-radius: 12px 12px 0px 0px;
    }
    .activity-box .titlebox{
        padding: 12px;
        gap: 0px;
    }
    .activity-box .title{
        font-size: 18px;
        font-weight: 700;
    }
    .activity-box .date{
        font-size: 14px;
    }
}

@media (max-width:414px) {
    .others p{
        font-size: 24px;
    }
    .activity{
        gap: 12px;
        border-radius: 8px;
    }
    .activity-box{
        height: 240px;
        min-width: 85%;
    }
}