*{
    padding: 0;
    margin: 0;
    border: none;
    box-sizing: border-box;
}

body {
    background-color: white;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}


.header {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #ddd;
    height: 82px;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

#header-menu {
    display: flex;
    padding-left: 5%;
    align-items: center;
    text-align: center;
}

#header-menu li{
    list-style-type: none;
    padding-right: 60px;
    display: flex;
    justify-content: center;
}

#header-menu li a{
  font-size: 17px;
  font-family: proxima-nova, sans-serif;
  font-weight: 600;
  color: black;
  text-decoration: none;
}

#header-menu li a::before{
  display: block;
  height: 0;
  content: attr(data-text);
  font-weight: 800;
  font-style: normal;
  overflow: hidden;
  visibility: hidden;
}

#header-menu li a:hover {
    font-weight: 800;
    font-style: normal;
}

#shop-link{
    color: red;
}

#logo-img img{
    height: 42px; /* will need to change this with media queries */
    width: auto;
    padding-right: 40px;
}

.projects-wrapper{
    margin: 0 auto;
    padding: 40px 0 100px 0;
    width: 90%;
    font-family: proxima-nova, sans-serif;
    font-size: 16px ;
    color: #ccc;
}

.projects-wrapper h1{
    padding: 20px 0px;
}

.items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.project-item {
  background-color: red;
  width: calc((100% - 30px)/3);
  padding-top: calc((100% - 30px)/3); /* padding is based on the parent's width*/
  position: relative;
  background-size: cover;
  background-position: center center;
}

.project-item-content{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color:rgba(255,255,255,0.5);
  visibility: hidden;
}

.project-item:hover .project-item-content{
  visibility: visible;
}

.project-item-content h2 {
  color: black;
  font-size: 24px;
}


#footer{
  color: black;
  text-align: center;
  font-family: proxima-nova, sans-serif;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  margin-top: 45px;
  padding: 20px 20px 25px 20px;
  line-height: 1.7;
  box-sizing: border-box;
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#socials-footer{
  height: 35px;
  width: 150px;
}

#socials-footer img{
  height: 80%;
  width: auto;
  padding: 20px 15px 30px 15px;
  opacity: 50%;
}

#socials-footer img:hover{
  opacity: 100%;
}

@media screen and (max-width: 800px) {
  .items {
    flex-direction: column;
  }

  .project-item {
    width: 100%;
    padding-top: 100%;
  }

  .projects-wrapper{
    padding: 5% 0;
    width: 90%;
  }
}


@media screen and (max-width: 1000px) {
    .header{
      background-color: white;
      position: fixed;
      z-index: 200;
      display: flex;
      width: 100%;
      border-bottom: 1px solid #ddd;
      height: 82px;
      align-items: center;
      overflow-x: hidden;
      justify-content: space-between;
    }

    .burger-button{
      display: flex;
      height: 100%;
      padding: 0 5%;
      background-color: white;
      align-items: center;
      border: 0;
    }

    .burger-button img{
      display: flex;
      height: 50%;
    }

    #logo-img img{
        height: 40px; /* will need to change this with media queries */
        width: auto;
        padding-right: 40px;
    }

    #desktop-logo{
      display: none;
    }

    #mobile-logo{
      display: flex;
    }

    #header-menu {
      width: 100%;
      display: none;
      flex-direction: column;
      background-color: #ddd;
      position: fixed;
      top: 82px;
      padding-left: 0%;
      z-index: 100;
      text-align: center;
    }

    #header-menu li{
      list-style-type: none;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      padding-right: 0;
    }

    #header-menu.show {
      display: flex;
    }

    #header-menu li a{
      font-size: 17px;
      font-family: proxima-nova, sans-serif;
      color: black;
      text-decoration: none;
      font-weight: 600;
      padding: 50px 0;
      width: 100%;
      font-size: 17px; /* will need to change depending on screen size */
    }

    #header-menu li a::before{
      display: block;
      height: 0;
      content: attr(data-text);
      font-weight: 800;
      font-style: normal;
      overflow: hidden;
      visibility: hidden;
    }

    #header-menu li a:hover {
        font-weight: 800;
        font-style: normal;
    }

    #header-menu a#shop-link{
        color: red;
    }
}
