/* ========================================= Global Setting ========================================= */
* {
    box-sizing: border-box;
}

body {
    width:100%;
    font-family: "Josefin Sans", sans-serif;
    margin: 0;
    color: #1C1C1C; /*font color*/
}






/* ========================================= Navigation - public ========================================= */

/*-------------navigation bar part------------*/
/*-------------navigation style------------*/
.nav_inside{
    display: flex; /* Have to have this for those below */
    flex-direction: row;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #1C1C1C;
}

.navigation{
    position: fixed; /*it fixed the position, but lose to fit fullscreen, it's the box's self width*/
    width: 100%; /*fill screen width*/
    box-sizing: border-box; /*make sure padding add inside, not push the box more wide than screen*/
    top: 0;
    left: 0;
    z-index: 1000; /*make sure navi is above everything, this means coordinate z = 1000, default auto:0*/

    padding-left: 38px; 
    padding-right: 38px;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px); /*the grass blur texture*/

    transition: all 0.2s linear;
}

.NavAndHeading04_SemiBold{
    font-size: 20px;
    font-weight: 600;
}

.nav_buttons{
    display: flex; /* Have to have this for those below */
    flex-direction: row;
    gap: 30px;
}
/*-------------navigation animation------------*/
#main-page-btn{
    transition: all 0.3s ease;
}
#main-page-btn:hover{
    font-weight: 600;
    letter-spacing: 0.1em;
}

#archive-btn{
    transition: all 0.3s ease;
}
#archive-btn:hover{
    font-weight: 600;
    letter-spacing: 0.1em;
}

#contact-btn{
    transition: all 0.3s ease;
}
#contact-btn:hover{
    font-weight: 600;
    letter-spacing: 0.1em;
}

#about-me-btn{
    transition: all 0.3s ease;
}
#about-me-btn:hover{
    font-weight: 600;
    letter-spacing: 0.1em;
}






/* ========================================= ContactBar & Buttom - public ========================================= */
/*-------------below are contact bar part------------*/
.container_inside{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.container_inside_I{
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 12px;
}

.NavAndHeading04_slash{
    font-size: 20px;
    font-weight: 300;
    text-decoration: underline;
    width: 100%;
}

.nav_contact{
    display: flex;
    gap: 80px;
}

.nav_contact_I{
    display: flex;
    justify-content: center;
    gap: 108px;
}

.bar_container{
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.nav_contact div:nth-of-type(1){
    width: 10vw;
}
.nav_contact div:nth-of-type(2){
    width: 7vw;
}

.bar_container_I{
    display: flex;
    flex-direction: column;
    gap: 36px;
    text-align: center;
}

.comma_container{
    height: 13px;
    width: 15px;
}

.quotationComma{
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.contact_bar{
    display: flex;
    flex-direction: row;
    padding-left: 38px;
    padding-right: 38px;
    padding-top: 68px;
    padding-bottom: 68px;
    justify-content: space-between;

    background-color: #F9F9F9;
}

.contact_bar_I{
    display: flex;
    flex-direction: column;
    padding-left: 38px;
    padding-right: 38px;
    padding-top: 120px;
    padding-bottom: 120px;

    background-color: #F9F9F9;
    gap: 120px;
}

.phrase{
    display: flex;
    flex-direction: column;
    max-width: 354px;
    gap: 10px;
}

.phrase_I{
    display: flex;
    align-self: center;
    flex-direction: column;
    max-width: 354px;
    gap: 10px;
}

.intro_phrase{
    width: 100%;
    font-size: 20px;
    font-weight: 300;
    display: flex;
    flex-wrap: wrap;
}

.container_inside .NavAndHeading04,
.container_inside_I .NavAndHeading04 {
    transition: all 0.3s ease;
}
.container_inside .NavAndHeading04:hover,
.container_inside_I .NavAndHeading04:hover {
    font-weight: 600;
    letter-spacing: 0.1em;
}



/* ------------------------- blow are the bottom ------------------------*/
/* 基础文字样式保持你的设定 */
.bodyFont {
    font-size: 14px;
    font-weight: 300;
    color: #333; /* 可以根据需要调整颜色 */
}

/* 底部容器 */
.bottom {
    display: flex;
    justify-content: space-between;
    align-items: center; /* 确保左右两边垂直居中对齐 */

    padding-left: 38px;
    padding-right: 38px;
    padding-bottom: 20px;
    padding-top: 20px; /* 增加顶部内边距让视觉更平衡 */

    background-color: #F9F9F9;
}

/* 许可证信息组合 */
.license-info {
    display: flex;
    align-items: center;
    gap: 12px; /* 图标和文字之间的间距 */
}

/* 图标样式 */
.cc-icons {
    display: flex;
    gap: 4px; /* 图标相互之间的微小间距 */
    text-decoration: none;
    height: 20px; /* 控制图标高度，与文字匹配 */
}

.cc-icons img {
    height: 100%; /* 图标高度随容器 */
    width: auto;
    opacity: 0.8; /* 稍微降低透明度，更具设计感 */
    transition: opacity 0.3s;
}

.cc-icons img:hover {
    opacity: 1; /* 鼠标悬停时变亮 */
}

/* 链接下划线修饰 */
.license-link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.license-link:hover {
    color: #000;
}









/* ========================================= AboutMe - private ========================================= */
/* blow are the first */
.intro_text{
    display: flex;
    flex-direction: column;
    gap: 20px;

    width: 30%;
    height: auto;
    padding-left: 40px;
}
.intro_text .bodyFont{
    display: flex;
    flex-wrap: wrap;
    color:#FFFFFF;
    font-weight: 400;
}
.contact_btn{
    width: 30%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 40px;
    padding-right: 20px;
    background-color: #000000;
}
.contact_btn .line_2{
    height: 14px;
    border-left: 1px solid #FFFFFF;
}
.contact_btn .bodyFont{
    color:#FFFFFF;
}
.up_part{
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.down_part{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding-left: 40px;
}
.introduction_layout{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 32px;
    padding-top: 90px;
    margin-top: 51px;

    /* set bg picture */
    background-image: url('images/AboutMe/Mewithcamera.jpg');
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;

    width: 100%;
    height: calc(100vh - 51px);
    position: relative; 
}
.DisplayH1{
    font-size: 128px;
    font-weight: 700;
    color: #FFFFFF;
    display: flex;
    flex-wrap: nowrap;
}
.contact_btn .bodyFont{
    transition: all 0.3s ease;
}
.contact_btn .bodyFont:hover{
    font-weight: 600;
    letter-spacing: 0.1em;
}

/* -----------------blow are the second -------------------*/
.card_toolKit{
    color:#FFFFFF;
    text-align: center;
    background-color: rgba(70, 66, 45, 0.6);
    backdrop-filter: blur(5px);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;

    width: 18vw;
    height:45vh;
}
.Heading03{
    font-weight: 400;
    font-size: 24px;
}
.card_toolKit .NavAndHeading04{
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom:1px solid rgba(255, 255, 255, 0.5);
}
.card_toolKit > div > .NavAndHeading04:last-child {
    border-bottom: none;
}
.left_col {
    margin-top: 10vh;
    margin-bottom: 10vh;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 8vh;
}
.right_col {
    margin-top: 10vh;
    margin-bottom: 10vh;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 8vh;
}
.toolKit {
    aspect-ratio: 1280.29 / 905;
    background-image: url('images/AboutMe/Myshadow.jpg');
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover;

    width: 100%;
    min-height: 100vh;
    position: relative; 

    display: flex;
    align-items: center; 
    
    padding: 0 10%; 
    box-sizing: border-box;

    margin-top: -2px; /* a white line showup inbetween the 2 page, want to delete it*/
}
#need_wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.card_toolKit > div:nth-of-type(1) {
    width: 90%;
}
.scroll_part{
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
}





/* ========================================= Breaking Points - only for about me page - private ========================================= */
@media screen and (min-width: 1660px){
    .card_toolKit{
        gap: 18px;

        width: 16vw;
        height:36vh;
    }
}
@media screen and (min-width: 980px){
    .card_toolKit{
        height:32vh;
    }
}