@import 'style.css';

/**** DEFAULT ****/

/*
* {
    padding: 0;
    margin: 0;
}
  
body {
    display: block;
    font-family: Open Sans, Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background: #f3f3f3;
}
  
ul {
    list-style: none;
}
  
a {
    text-decoration: none;
    text-transform: uppercase;
    color: #e7e7e7;
}

h1, h2, h3, h4, h5, h6, a, .welcome_contact_btn, .about_me_contact_btn, .btn_submit, .copy {
    text-transform: uppercase;
}
*/

/*
.flex {
    display: flex;
    justify-content: space-around;
}
  
.none_text {
    display: none;
}
*/

/*
  .site {
    display: grid;
    grid-template-areas: "header" "welcome_area" "about_me_area" "skills_and_work" "contact" "footer";
*/
/*    grid-row-gap: 1rem;*/
  }
  
/**** HEADER ****/

header {
    width: 100%;
    height: 95px;
    grid-area: header;
    grid-template-areas: "brand" "nav";
/*    background-color: #3a464b;*/
}

header .header_inner {
    background-color: #3a464b;
    align-items: center;
}

/**** TABLET VERSION ****/

@media only screen and (min-width: 545px) {
    
    header .header_inner {
/*    background-color: transparent;*/
    display: flex;
    justify-content: space-between;
        height: 70px;
        border-bottom: #4E8BC4 5px solid;
}
    
}
/**** BRAND ****/

header .brand {
    grid-area: brand;
/*    display: flex;*/
}

header .brand a {
    grid-area: brand;
    color: #e7e7e7;
    text-align: center;
    font-weight: 900;
    font-size: 24px;
    padding: 10px 0;
    display: block;
    width: 100%;
}

/**** TABLET VERSION ****/

@media only screen and (min-width: 545px) {

    header .brand a {
/*    grid-area: brand;*/
        display: inline;
/*    color: #e7e7e7;*/
/*    text-align: center;*/
/*    font-weight: 900;*/
/*    font-size: 24px;*/
    padding: 0px 0;
/*    display: block;*/
/*    width: 100%;*/
    border-bottom: 5px solid #4E8BC4;
        margin: 0 0 0 20px;
        text-shadow: 1px 1px 1px #111;
}
    
}

/**** NAVIGATION ****/

header nav {
    grid-area: nav;
/*    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);*/
  }

header nav ul {
    display: none;
    list-style: none;
/*    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);*/
}

header nav ul li {
    margin-top: 0px;
    line-height: 3em;
    text-align: center;
/*    display: block;*/
}
header nav ul li:hover {
    background-color: #4E8BC4;
    border-bottom: 1px solid #e7e7e7;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
}

header nav ul a {
    color: #4E8BC4;
    text-shadow: 0px 2px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    display: block;
/*    height: 100%;*/
    
}
header nav ul a:hover {
/*    width: 100%;*/
    color: #e7e7e7;
    font-weight: bold;
    text-shadow: 0px 0px rgba(0, 0, 0, 0);
}

/**** MENUE ICON ****/

header #menue-icon {
    display: none;
/*
    font-size: 1.5rem;
    color: #e7e7e7;
    text-shadow: 0px 2px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    padding: 20px;
*/
}

header nav #menue {
    display: block;
    width: 100%;
    font-size: 1.5rem;
    text-align: center;
    background-color: #e7e7e7;
    text-shadow: 0px 2px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    border-bottom: 5px solid #4E8BC4;
}
  
/**** TABLET VERSION ****/

@media only screen and (min-width: 545px) {
    
    header nav #menue {
    display: none;
    }
    
    header #menue-icon {
    display: block;
    font-size: 1.5rem;
    color: #e7e7e7;
    text-shadow: 0px 2px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    padding: 20px;
    }
    
    header nav ul{
        display: none;
    }
}

header nav #toggle {
    display: none;
}
header nav #toggle:checked + ul {
    display: block;
}

/**** INDEX ****/
  
#index-welcome {
    grid-area: welcome_area;
    background: url(img/File_004.jpeg) center center no-repeat;
    background-size: cover;
    height: calc(100vh - 95px);
    width: 100%;
/*    To center the text content display hav to set as table */
    display: table;
}

/**** TABLET VERSION ****/

@media only screen and (min-width: 545px) {
 
    #index-welcome {
        height: calc(100vh - 70px);
    }
}

#index-welcome .welcome_content {
    line-height: 5rem;
    text-align: center;
/*    padding: 50% 0;*/
    font-size: 1.2em;
    text-transform: uppercase;
    text-shadow: 1px 1px 5px #eee;
    color: #111;
/*    Center the text content */
    display: table-cell;
    vertical-align: middle;
}

/**** WELCOME CONTACT BUTTON ****/

  #index-welcome .welcome_contact_btn {
    box-shadow: inset 0 1px 20px #eee;
    background-color: transparent;
    color: #e7e7e7;
    padding: 10px;
    margin-top: 10%;
    font-weight: bold;
    font-size: 1.2em;
    text-transform: uppercase;
    border-radius: 5px;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2), 0 0 0 1px #293347;
  }
  #index-welcome .welcome_contact_btn:hover {
    box-shadow: inset 10px 10px 25px #4E8BC4, inset -10px -10px 25px #4E8BC4;
    color: #fff;
    transition: translate 0.5s ease-in-out;
  }

/**** TABLET VERSION ****/

@media only screen and (min-width: 545px) {
 
    #index-welcome .welcome_contact_btn {
        margin-top: 0;
    }
}
  
/**** ABOUTE ME ****/

#about_me {
    grid-area: about_me;
    padding: 13px 3px;
    display: flex;
    justify-content: space-around;
}

#about_me .about_me_content {
    box-shadow: 1px -10px 100px #3a464b;
/*    padding: 0 10px;*/
}
  #about_me .about_me_text h2 {
    text-transform: uppercase;
    margin: 3%;
    text-align: center;
  }
.about_me_text h3 {
    margin: 3%;
}
  #about_me .about_me_text p {
    margin: 3%;
    line-height: 2.5rem;
    font-size: 1.2em;
  }

  #about_me .bg_img {
    display: flex;
    justify-content: space-around;
  }
  #about_me .bg_img .avatar {
    height: 100px;
    width: 100px;
    margin: 30px;
    border-radius: 50%;
  }

/**** ABOUT ME CONTACT BUTTON ****/

#about_me .about_me_contact_btn {
    border: 1px solid #4E8BC4;
    border-radius: 5px;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2), 0 0 0 1px #293347;
    text-align: center;
    color: #000;
    padding: 9px 31px;
    margin: 5% 0;
/*    margin: 20px 30%;*/
/*    width: 100%;*/
    font-size: 1em;
    font-weight: 700;
    -webkit-transition: padding 0.35s, background 0.35s;
    transition: padding 0.35s, background 0.35s;
  }
  #about_me .about_me_contact_btn:hover {
    background-color: #4E8BC4;
    border: 1px solid #4E8BC4;
    border-radius: 5px;
    box-shadow: none;
    color: #e7e7e7;
    transition: translate 0.7s ease-in-out;
  }
  
/**** SKILLS AND WORK ****/

#skills_and_work {
    grid-area: skills_and_work;
    background-color: #e7e7e7;
  }
  #skills_and_work .skills_and_work_area {
    box-shadow: 2px 2px 2px 5px rgba(0, 0, 0, 0.2), 0 5px 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
  }
  #skills_and_work .skills_work_content {
    margin: 3%;
    padding: 3%;
    background-color: #fff;
  }
  #skills_and_work .skills_work_content h2 {
/*    text-transform: uppercase;*/
    line-height: 3rem;
  }
  #skills_and_work .skills_work_content h3 {
/*    text-transform: uppercase;*/
    text-align: center;
    line-height: 3rem;
    color: #4E8BC4;
  }
  #skills_and_work .skills_work_content p {
    line-height: 2em;
    margin: 1% 0;
  }
  #skills_and_work .skills_work_content span > a {
    font-weight: bold;
    color: #111;
  }
  #skills_and_work .skills_work_content .list, #skills_and_work .skills_work_content .list_container > .marketing_skill_list {
    border-radius: 5px;
    background-color: #fff;
    padding: 3%;
/*    text-transform: uppercase;*/
    line-height: 3em;
    text-align: center;
}
    
/**** WEB SKILLS ****/

  #skills_and_work .skills_work_content .list .web_skill_list, #skills_and_work .skills_work_content .list_container > .marketing_skill_list .web_skill_list {
/*    margin: 30px;*/
  }
  #skills_and_work .skills_work_content .list ul, #skills_and_work .skills_work_content .list_container > .marketing_skill_list ul {
    box-shadow: 2px 0px 2px 0px rgba(0, 0, 0, 0.2), -2px 0px 2px 0px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
  }
  #skills_and_work .skills_work_content .list ul li, #skills_and_work .skills_work_content .list .marketing_skill_list li, #skills_and_work .skills_work_content .list_container > .marketing_skill_list ul li, #skills_and_work .skills_work_content .list_container > .marketing_skill_list .marketing_skill_list li {
    text-transform: uppercase;
    color: #4E8BC4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2);
/*    padding: 5px;*/
  }
  #skills_and_work .skills_work_content .list ul li:hover, #skills_and_work .skills_work_content .list .marketing_skill_list li:hover, #skills_and_work .skills_work_content .list_container > .marketing_skill_list ul li:hover, #skills_and_work .skills_work_content .list_container > .marketing_skill_list .marketing_skill_list li:hover {
    color: #000;
    box-shadow: 0 2px 0 0 #4E8BC4;
  }
  #skills_and_work .skills_work_content .list ul li:hover, #skills_and_work .skills_work_content .list ul li last-child, #skills_and_work .skills_work_content .list .marketing_skill_list li:hover, #skills_and_work .skills_work_content .list .marketing_skill_list li last-child, #skills_and_work .skills_work_content .list_container > .marketing_skill_list ul li:hover, #skills_and_work .skills_work_content .list_container > .marketing_skill_list ul li last-child, #skills_and_work .skills_work_content .list_container > .marketing_skill_list .marketing_skill_list li:hover, #skills_and_work .skills_work_content .list_container > .marketing_skill_list .marketing_skill_list li last-child {
    color: #000;
    box-shadow: 0 2px 0 0 #4E8BC4;
    border-radius: 5px;
  }
  #skills_and_work .skills_work_content .list li:last-child, #skills_and_work .skills_work_content .list_container > .marketing_skill_list li:last-child {
    box-shadow: none;
  }
  
  /**** CONTACT ****/

#contact {
/*
    display: flex;
    justify-content: space-around;
*/
    padding: 70px 10px;
  }
  #contact .contact_area {
  }
/**** CONTACT FORM ****/

  #contact .contact_area h2 {
    text-transform: uppercase;
    text-align: center;
    line-height: 3em;
  }
  #contact .contact_area form {
    line-height: 3em;
  }
  #contact .contact_area form ul li input {
    padding: 12px 14px;
    font-size: 15px;
    color: #000;
    margin: 0 20px 10px 0;
    border: none;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 5px;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
  }
  #contact .contact_area form textarea {
    padding: 12px 14px;
    width: 90%;
    font-size: 15px;
    color: #000;
    border: none;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 5px;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
  }
  #contact .contact_area form .btn_submit {
    border: 1px solid #4E8BC4;
    border-radius: 5px;
    text-align: center;
    color: #000;
    padding: 9px 31px;
    margin-top: 5%;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2), 0 0 0 1px #293347;
    -webkit-transition: padding 0.25s, background 0.25s;
    transition: padding 0.25s, background 0.25s;
  }
  #contact .contact_area form .btn_submit:hover {
    background-color: #4E8BC4;
    box-shadow: none;
    color: #e7e7e7;
    transition: translate 0.5s ease-in-out;
  }
  
  /**** FOOTER ****/
  footer {
    grid-area: footer;
    background-color: #3a464b;
    /**** FOOTER LIST ****/
  }
  footer .footer_brand{
    text-align: center;
    color: #e7e7e7;
    padding: 10px 20px;
    font-weight: 900;
    font-size: 24px;
  }
  footer .footer_list li {
    text-align: center;
    padding-bottom: 10px;
  }
  footer .footer_list li h4 {
    color: #4E8BC4;
    font-size: 1.2em;
    line-height: 1.5;
  }
  footer .footer_list li a {
    line-height: 1.5;
    font-size: 1em;
    text-decoration: none;
    text-transform: uppercase;
    color: #e7e7e7;
  }
  footer .copy {
    text-align: center;
  }