/**
 * Filename : home.css
 * Author   : Kumpee Teeravech
 *          : Geoinformatics Field of Study,
 *          : Faculty of Computer Science and Information Technology,
 *          : Rambhai Barni Rajabhat University, Chanthaburi, Thailand, 22000
 * Version  : 2023-08-01
 */
/**
 * ----------------------------------------------------------------------------
 * PAGE CONTAINER
 * ----------------------------------------------------------------------------
 */
 #page_container {
    background-color: rgb(231, 231, 231);
    padding: 0px 0px 0px 0px;
    margin: auto;
    width: 960px !important;
    /*height: 100%;*/
    border-radius: 16px;
    overflow: hidden;
 }

/**
 * ----------------------------------------------------------------------------
 * PERSONAL INFORMATION
  * ----------------------------------------------------------------------------
 */
#personal_information {
    width: 100% !important;
    height: 140px !important;
    margin-bottom: 8px;
}

#personal_information #personal_photo {
    display: inline-block;
    width: 120px !important;
    height: 140px !important;
    padding: 0px 0px 0px 0px;
}

#personal_information #personal_affiliation {
    background: url(../img/profile_kumpee.jpg) no-repeat;
    background-size: 120px 124px;
    display: inline-block;
    width: calc(100%);
    height: 140px !important;
    padding: 0px 0px 0px 160px;
}

/**
 * ----------------------------------------------------------------------------
 * HEADER
  * ----------------------------------------------------------------------------
 */
#header_container {
    background-color: rgb(246, 246, 246);
    /*background-image: url(../images/logo.png);
    background-position: 6px 6px;
    background-size: 40px 40px;
    background-repeat: no-repeat;*/
    width: 100% !important;
    height: 100px !important;
}

#header_container h3 {
    /*float: right;*/
    color: var(--primary_text_color);
    font-family: 'Anuphan', sans-serif;
    font-size: 22px;
    font-weight: normal;
    margin-left: 50px;
    padding-top: 8px;
    padding-right: 8px;

    transform: translate(0.0rem, 0.0rem);
    transition: all 0.1s ease-out;
}

#header_container h3:hover {
    transform: translate(0.0rem, 0.0rem);
    letter-spacing: 0.2pt;
}


/**
 * ----------------------------------------------------------------------------
 * CONTENT-CONTAINER
 * ----------------------------------------------------------------------------
 */
#content_container {
    /*background-color: rgb(231, 231, 120);*/
    width: 100%;
    /*height: calc(100vw - 32px - 500px);*/
}

#home_content_container {
    background-color: rgb(255, 255, 255);
    width: 100% !important;
}
#home_content_container::after {
    content: "";
    display: table;
    clear: both;
}

#home_about_container {
    background-color: rgb(45, 54, 55);
    color: rgb(200,200,200);
    width: 250px !important;
    float: left;
    padding: 16px 16px 16px 32px;
}

#home_about_container h3 {
    color: rgb(255,255,255);
    font-size: 1.2em;
}
#home_about_container ul {
    list-style-type: circle;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 24px 0px;
}
#home_about_container li {
    border-bottom: 1px dashed rgb(70,71,72);
    padding-top: 8px;
    font-size: 0.8em;
}
#home_about_container li:hover {
    /*background-color: green;*/
    border-bottom: 1px dashed rgb(100,100,100);
}
#home_about_container a {
    color: rgb(168, 196, 142);
    text-decoration: none;
}
#home_about_container a:hover {
    color: rgb(255, 255, 255);
}
#home_right_container {
    padding: 16px 16px 16px 32px;
    width: calc(100% - 250px);
    float: right;
}
#home_right_container ul {
    list-style-type: circle;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 24px 24px;
}

/**
 * ----------------------------------------------------------------------------
 * TOP MENU
 * ----------------------------------------------------------------------------
 */
#top_menu_container {
    /*background-color: rgba(255,255,0,0.2);*/
    background-color: rgba(245, 245, 245, 1.0);
    position: absolute;
    left: 0px;
    top: 52px;
    height: 48px !important;
    width: 100% !important;
    /*overflow: hidden;*/
    z-index: +1;
}

/*
#top_menu_container a {
    background-color: var(--primary_color);
    border-radius: 24px;
    float: left;
    text-align: center;
    text-decoration: none;
    margin-right: 2px;
    padding: 0px 0px 0px 0px;
    width: 48px !important;
    height: 48px !important;
}
#top_menu_container a:hover {
    background-color: black;
    color: white;
}
*/
#top_menu_container a {
    border-bottom: 3px solid transparent;
    float: left;
    color: black;
    text-align: center;
    text-decoration: none;
    margin-right: 8px;
    padding: 8px 8px 8px 8px;
    width: 48px !important;
    height: 100%;
}

#top_menu_container a:hover {
    border-bottom: 3px solid var(--primary_color);
    color: black;
}

#top_menu_container .top_menu_icon {
    width: 48px !important;
    height: 48px !important;
}

@media screen and (max-width: 800px) {
    /*
    #header_container {
        visibility: hidden;
        left: 0px;
        top: 0px;
        width: 0.1px;
        height: 0.1px;
    }
    #top_menu_container {
        position: absolute;
        left: 0px;
        top: calc(var(--header_height) - 50px);
    }

    #content_container {
        position: absolute;
        left: 0px;
        top: -52px;
    }

    #top_menu_container a {
        float: left;
        text-align: center;
        text-decoration: none;
        padding: 8px 8px 8px 8px;
        width: 20%;
        height: 48px;
        margin: 0px 0px 0px 0px;
    }

    #top_menu_container a:hover {
        border-bottom: 3px solid var(--primary_color);
        background-color: var(--primary_color);
    }

    #about_box_container {
        top: 100px;
        height: calc(100% - 100px - 70px);
    }

    #footer_container {
        position: absolute;
        top: calc(100% - 70px);
    }
    */
}

/**
 * ----------------------------------------------------------------------------
 * FOOTER
 * ----------------------------------------------------------------------------
 */
#footer_container {
    background-color: rgb(250, 250, 250);
    color: rgb(0, 0, 0);
    text-align: center;
    font-size: 12px;
    /*padding-top: 12px;*/
    width: 100% !important;
    height: 100px !important;
}