/* HOME */

* {
  box-sizing: border-box;
}

li,
a,
button {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
}

p {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 400;
}

h2 {
  font-family: "Jost", sans-serif;
  font-size: 50px;
}

h3 {
  font-family: "Jost", sans-serif;
  font-size: 36x;
  font-weight: 400;
}

 h5 {
    font-family: "Jost", sans-serif;
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
  }
 
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 10%;
  height: 10%;
  margin-left: 175px;
}

.nav-links {
  list-style: none;
}
.nav-links a {
  position: relative;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0 10px;
}

.nav-links li {
  display: inline-block;
  padding: 10px 20px;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  background: #000;
  bottom: 0;
  right: 0;
  height: 16px;
  width: 2px;
}

.nav-links li a {
  transition: all 0.5s ease 0s;
}

.nav-links li a:hover {
  color: #e1b658;
}

.home-banner img {
  width: 100%;
}

.portfolio-text-home {
  margin: 30px 0 0 175px;
}

.portfolio-home h2 {
  display: flex;
}

.portfolio-info-home {
  display: flex;
  justify-content: space-around;
  padding: 50px;
  flex-wrap: wrap;
}

.portfolio-info-home h5 {
  text-align: center;
}

.gd-home {
  cursor: pointer;
  transition: transform 0.2s;
}
.gd-home:hover {
  cursor: pointer;
  transform: scale(1.1);
}

.photography-home {
  cursor: pointer;
  transition: transform 0.2s;
}
.photography-home:hover {
  cursor: pointer;
  transform: scale(1.1);
}

.about-contact {
  display: flex;
  margin: 0 0 0 112px;
  justify-content: space-around;
  flex-wrap: unset;
}
.about-contact h2,
p {
  width: 72%;
  padding: 10px;
  text-align: justify;
  line-height: 24px;
}
.contact-home {
  width: 85%;
}
.about-home {
  width: 100%;
}
.button-home {
  border: 1px solid black;
  padding: 10px;
  color: #000;
}

.button-home:hover {
  color: #e1b658;
  border: 1px solid #e1b658;
}
footer {
  padding: 100px 0;
  padding-bottom: 20px;
}

.social {
  text-align: center;
  margin-bottom: 16px;
}

.social a {
  margin: 0 10px;
  font-size: 24px;
  width: 30px;
  height: 30px;
  line-height: 35px;
}
.social a:hover {
  opacity: 0.45;
}

.nav-links-footer a,
li {
  list-style: none;
  color: #000;
}

.copyright {
  display: flex;
  margin-top: 20px;
  text-align: center;
  font-family: 'Delius', cursive;
  font-size: 16px;
  justify-content: center;
  margin-left: 255px;
}

/* END HOME */

/* PORTFOLIO */

h1 {
  margin-left: 175px;
  font-family: "Jost", sans-serif;
  font-size: 60px;
}

.portfolio-title {
  display: flex;
  margin-top: 100px;
}

.projects {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.img-project {
  padding: 20px 20px;
}

.img-project {
  cursor: pointer;
  transition: transform 0.2s;
}
.img-project:hover {
  cursor: pointer;
  transform: scale(1.1);
}

.text-description h3 {

  margin-left: 175px;
}

/* END PORTFOLIO */


/* CONTACT PAGE */

.contact-container {
  display: flex;
  height: 700px;
}

.contact-container-form {
  width: 650px;
  padding: 10px 20px;
  position: absolute;
  top: 35%;
  left: 33%;
  background-color: #4e496d;
  border-radius: 10px;
  opacity: 0.6;
  box-shadow: 0 0 20px #999;
  font-family: 'Alice', serif;
  color: #fff;
}

.contact-container-form h3 {
  text-align: center;
}

.form-container {
  line-height: 30px;
}

form {
  margin: 40px;
}

input {
  width: 550px;
  height: 40px;
  padding: 10px 10px;
  border-radius: 10px;
  border: 1px solid #777;
  outline: none;
  color: #000;
}

input[type=submit]{
  cursor: pointer;
  color: #332117;
}

input[type=submit]:hover{
  background-color: antiquewhite;
  color: #332117;
}

textarea {
  width: 550px;
}

/* END CONTACT PAGE */


/* ABOUT PAGE */

.about {
  display: flex;
  justify-content: center;  
}
.about-text {
  width: 50%;
}

.img-project-luciana {
  max-width: 100%;
}

/* END ABOUT PAGE */


/* RESPONSIVE */

@media only screen and (max-width: 1024px) {

  header {
    display: flex;
    flex-wrap: wrap;
  }

  .logo {
    width: 20%;
  }

  .img-project-luciana {
    width: 50%; 
  }

  .img-projects {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }

  .about-text {
    font-size: 13px;
  }

  .copyright {
    margin-left: 100px;
  }

  .contact-container {
    display: flex;
    height: 700px;
  }
  
  .contact-container-form {
    width: 350px;
    margin-top: 150px;
    padding: 10px 20px;
    position: absolute;
    top: 35%;
    left: 33%;
  }
  
  .contact-container-form h3 {
    text-align: center;
  }
  
  .form-container {
    line-height: 30px;
  }
  
  form {
    margin: 40px;
  }
  
  input {
    width: 250px;
    height: 40px;
    padding: 10px 10px;
    border-radius: 10px;
    border: 1px solid #777;
    outline: none;
    color: #000;
  }
  textarea {
    width: 250px;
  }
  
}

@media only screen and (max-width: 640px) {

  .nav-links li {
    display: inline-block;
    padding: 10px 10px;
  }

  .about {
    display: block;
  }

  .about h3{
    display: block;
    font-size: 20px;
  }

  .img-project-luciana {
    width: 100%; 
  }

  .img-projects {
    display: flex;
    flex-wrap: wrap;
    width: 60%;
  }

  .contact-container-form {
    position: absolute;
    top: 35%;
    left: 25%;
  }

}


/* References:

class notes, W3Schools, files uploaded at blackboard and past projects.

https://www.w3schools.com/howto/howto_css_zoom_hover.asp
https://www.w3schools.com/cssref/sel_after.php
https://www.w3schools.com/css/css_rwd_mediaqueries.asp
https://www.w3schools.com/tags/att_a_href.asp

*/