/**
* Filename: .assets/css/portfolio.css
* Project: JT-WT-22S2-AT2-Pt1
* Author: Jessica Turner <jessicarturner00@gmail.com>
* Created: 2022/09/06
* Version 1
 */

/* || SITE DEFAULTS */
html {
    font-family: "Roboto", Arial, sans-serif;
    color: #FFFFFF;
    background-color: #292929;
    overflow-y: scroll;
    overflow-x: scroll;
    scrollbar-width: thin;
}

h1 {
    font-family: Patua One, Arial, sans-serif;
}

h3,
h4 {
    font-family: Outfit, Arial, sans-serif;
    font-size: 2rem;
}

p {
    font-family: Roboto, Arial, sans-serif;
}

.container {
    margin: 0 auto;
    padding: 0;
    width: 80%;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 70vh;
    height: max-content;
    min-width: 640px;
    max-width: 80%;
    margin: 0 0 0 10%;
    /*border: 1px solid red;*/
}

/* || HEADER */
.site-header {
    display: flex;
    flex-flow: row;
    justify-content: space-around;
}

.site-img-branding {
    display: flex;
    justify-content: left;
}

.site-header-img {
    max-width: 9rem;
    margin-right: 2rem;
}

.site-header-branding {
    font-size: 2.8rem;
    padding-top: 3.5rem;
}

.site-nav {
    padding-top: 4rem;
    padding-left: 4rem;
    display: flex;
    justify-content: right;
    font-family: Outfit, sans-serif;
    font-size: 1rem;
}

.site-nav ul {
    display: flex;
    list-style-type: none;
}

.header-nav-button {
    display: block;
    float: left;
    width: auto;
    min-width: 1rem;
    max-width: 15rem;
    padding: 1rem;
    margin: 0 1rem;
}

.header-nav-button-current-page {
    display: block;
    float: left;
    width: auto;
    min-width: 4rem;
    max-width: 15rem;
    padding: 1rem;
    margin: 0 1rem;
    text-align: right;
    border-bottom: 3px solid #FA86FC;
}

/* HOVER STYLE */
.home-skills-heading:hover,
.footer-link:hover,
.header-nav-button:hover {
    background: #484848;
    border-bottom: 3px solid #03DAC5;
    text-align: right;
}

.header-nav-button-current-page:hover {
    background: #484848;
    border-bottom: 3px solid #FA86FC;
}

/* || HOME PAGE CONTENT*/

/* BLURB */
.home-content-heading {
    margin-left: 2rem;
    padding: 5px;
    font-size: 2rem;
}

.home-blurb {
    padding: 10px;
    margin: 40px auto auto 40px;
    line-height: 25px;
    justify-content: left;
}

.home-blurb h3 {
    padding: 5px 0 15px;
    font-size: 2rem;
}

.home-blurb p {
    padding-left: 1rem;
}

/* SKILLS */
.home-skills {
    margin: 50px 0;
}

.home-skills-heading {
    font-family: Outfit, Arial, sans-serif;
    margin-left: 2rem;
    padding: 5px;
    font-size: 2rem;
}

.skill-thumbnail {
    max-width: 7rem;
    background-color: #383838;
    border-radius: 15px;
    margin: 2rem;
    display: inline-block;
}

.home-project-card:hover,
.home-github-contact div:hover,
.skill-thumbnail:hover, .about-linkedin:hover, .about-contact:hover {
    background-color: #484848;
}

.skill-thumbnail-img {
    max-width: 5rem;
    margin: 1rem;
}

/* -- Code based on https://www.w3schools.com/howto/howto_css_menu_horizontal_scroll.asp -- */
div.scrollmenu {
    display: flex;
    overflow: auto;
    white-space: nowrap;
}

/* -- Code based on https://www.w3schools.com/howto/howto_css_custom_scrollbar.asp -- */
::-webkit-scrollbar {
    width: 10px;
    border-radius: 20px;
}

::-webkit-scrollbar-track {
    background: #292929;
}

::-webkit-scrollbar-thumb {
    background: #383838;
    border-radius: 30px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* -- */

/* || GITHUB AND CONTACT CARD */
.home-github-section, .about-contact-section {
    margin: 10px auto 10px auto;

}

.home-github-contact {
    display: flex;
    justify-content: space-around;

}

.home-github, .demo-card {
    background-color: #383838;
    border-radius: 20px;
    display: flex;
    min-width: 250px;
    min-height: 100px;
}

.demo-card{
    margin: 20px;
}

.home-github-heading {
    font-family: Outfit, Arial, sans-serif;
    text-align: center;
    margin: auto;
    padding: 15px 15px 15px 20px;
    font-size: 2rem;
}

.home-github-img {
    max-width: 80px;
    border: 2px solid #484848;
    padding: 2px;
    margin: 10px;
    border-radius: 100px;
    background-color: #292929;
}

.home-github-content {
    margin: 30px 18px 5px;
    font-family: Outfit, Arial, sans-serif;
    font-size: 2rem;
}

.home-contact, .skills-contact, .skills-project {
    background-color: #383838;
    border-radius: 20px;
    display: Block;
    min-width: 310px;
    min-height: 100px;
    margin: 0 25px 25px 100px;
}

.home-contact h3, .skills-contact h3, .skills-project h3, .about-contact h3 {
    padding: 10px 5px 10px 25px;
    font-size: 2rem;
    align-items: center;
}

.home-contact h4, .skills-contact h4, .skills-project h4, .about-contact h4 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.3rem;

}

.home-contact u, .about-contact u, .skills-contact u, .skills-project u, .home-blurb-link {
    text-decoration: underline;
}


.home-contact u:hover, .about-contact u:hover, .skills-contact u:hover, .skills-project u:hover, #blurb-link:hover {
    color: #FA86FC;
}

/* || FEATURED PROJECTS */
.home-feat-projects {
    margin: 50px auto;
}

.home-feat-projects h3 {
    margin-left: 2rem;
}

.home-projects {
    display: flex;
    justify-content: space-around;
}

.home-project-card {
    background-color: #383838;
    border-radius: 20px;
    min-width: 500px;
    max-width: 500px;
    margin: 50px;
}

.home-project-languages {
    display: flex;
    margin: 15px 25px 5px 30px;
    /* LANGUAGE COLOURS:
    Python: #3572a5
    CSS: #704fa2
    HTML: #e34c26
    JS: #f1e05a
    C#: #178600
    XAML: #55a0e2
    .NET: #82299a
    PHP: #4f5d95
    */
}

.language-colour-python {
    color: #3572a5
}

.language-colour-html {
    color: #e34c26
}

.language-colour-css {
    color: #704fa2
}

.language-colour-js {
    color: #f1e05a
}

.language-colour-c-sharp {
    color: #178600
}

.language-colour-xaml {
    color: #55a0e2
}

.language-colour-dot-net {
    color: #82299a
}

.home-project-languages p {
    margin-right: 25px;
}

.home-project-card img, .project-card img {
    margin: 10px 20px;
    border-radius: 20px;
    max-width: 460px;
}

.home-project-desc,
.home-project-card h4 {
    margin: 10px auto 20px auto;
    text-align: center;
}

.home-project-desc {
    padding: 5px 10px;
}

/* || FOOTER */
.site-footer {
    display: flex;
    flex-flow: row;
    justify-content: space-around;
    color: #e2e8f0;
    margin: 0;
    padding: 5rem 0 0;
    font-family: Outfit, sans-serif;
}


.footer-link {
    padding: 1rem;
    margin: 1rem;
}

.footer-link:first-child {
    margin-left: 8rem;
}

/* ABOUT PAGE */
.about-section {
    display: flex;
    justify-content: space-around;
    margin: 20px auto 20px auto;
}


.about-section img {
    margin: 1rem 50px 1rem auto;
    border-radius: 20px;
    max-width: 350px;
}

.about-li-form {
    display: flex;
}

.about-section p {
    padding: 10px;
    font-size: 1.5rem;
    line-height: 2.4rem;
}

.about-linkedin {
    background-color: #383838;
    border-radius: 20px;
    display: flex;
    min-width: 50px;
    min-height: 50px;
}

.about-linkedin-img {
    max-width: 20px;
    border: 2px solid #484848;
    padding: 1px;
    margin: 5px;
    border-radius: 100px;
    background-color: #292929;
}

.about-linkedin-heading {
    font-family: Outfit, Arial, sans-serif;
    text-align: center;
    margin: auto;
    padding: 5px 5px 5px 20px;
    font-size: 2rem;
}

.about-contact {
    background-color: #383838;
    border-radius: 20px;
    display: Block;
    min-width: 310px;
    min-height: 130px;
    margin: 5px 100px 25px 50px;
}

.about-contact h3 {
    padding: 20px 20px 5px 30px;
}

.about-contact h4 {
    padding: 10px 20px 20px 20px;
    text-align: center;
    margin: auto;
}

.skills-columns {
    display: flex;
}

.width {
    width: 50%;

}

.skill-text {
    background-color: #383838;
    border-radius: 15px;
    margin: 2rem;
    padding: 20px;
    min-width: 260px;
}

.skill-text h1 {
    font-size: 1.7rem;
}

.skill-text h4 {
    font-size: 1rem;
}

.skills {
    display: flex;
    align-content: end;
    align-items: center;
}

.skills-contact, .skills-project {
    margin: 0 0 25px 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 10% 30% 10% 30% 10%;
    grid-template-rows: 70px 40px 40px 40px 100px 40px auto;
    grid-row-gap: 20px;

}

.contact-grid-item label {
    font-size: 1.1rem;
}

.contact-grid-item input, .contact-grid-item textarea, .contact-grid-item select {
    background-color: #484848;
    color: white;
    border-radius: 5px;
    padding: 7px;
}

.contact-submit, .contact-reset {
    background-color: #383838;
    width: 80px;
    text-align: center;
    border-radius: 5px;
}

.contact-submit:hover, .contact-reset:hover {
    background-color: #484848;
}

.contact-platforms img {
    width: 100px;
    padding: 15px;
}

.projects-title{
    margin: 25px;
}

.project-card {
    background-color: #383838;
    border-radius: 20px;
    max-width: 75%;
    margin: 40px auto auto;
}
.project-card-top-row {
    display: flex;
}

.project-card-top-row-text{
    margin: auto;
}
.project-card-bottom-row {
    padding: 15px;
}
.project-card-bottom-row p{
font-size: 1.1rem;
}
.project-card-bottom-row a:hover{
    text-decoration: underline 1px;
}
.project-card-top-row-text h4{
    margin: 25px;
}

.project-card-top-row-text h5{
    margin: 0 25px 25px;
}
.project-card-bottom-row h5{
    font-size: 1.2rem;
    margin: auto 0;
    text-decoration: underline 1px;
}
.projects {
    margin: 50px;
    /*display: flex;*/
    /*justify-content: space-around;*/
}

.project-card-bottom-row-github{
    display: flex;
}
.project-card-bottom-row-github:hover{
    color: #FA86FC;
}
.project-card-bottom-row-github img{
    border-radius: 1000px;
    max-width: 50px;
}