*{
    padding: 0;
    margin: 0;
    border: none;
    box-sizing: border-box;
}

.body{
  width: 100%;
}

.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;
}


.burger-button{
  height: 100%;
  padding: 0 5%;
  display: none;
  background-color: white;
  align-items: center;
}

.burger-button img{
  display: flex;
  height: 50%;
}

#mobile-logo{
  display: none;
}

#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{
  width: 60px;
  height: auto;
  padding: 20px 15px 30px 15px;
  opacity: 50%;
}

#socials-footer img:hover{
  opacity: 100%;
}

.maintext {
  /*background-color: #A5311A;*/
  background-color: #ddd;
  margin-left: 20%;
  margin-right: 20%;
  margin-top: 5%;
  padding: 5%;
  padding-top: 8%;
  padding-bottom: 8%;
  text-align: center;
  font-family: proxima-nova, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

a {
  color: black;
}

a:hover {
  color: red;
}

.maintext p {
  font-family: proxima-nova, sans-serif;
  font-size: 16px;
}

#focus{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  margin: 20px 0 0 0;
  background-color: white;
}


#focus-text{
  font-family: proxima-nova, sans-serif;
  font-weight: 200;
  font-size: 14px;
  background-color: rgba(245,245,245,0.8);
  flex-shrink: 1;
  box-sizing: border-box;
  padding: 50px;
  margin-right: -50px;
  min-width: 0;
  width: 50%;
  z-index: 1;
  line-height: 1.4;
  word-spacing: 1.2;
}

#focus-img {
  flex-shrink: 1;
  box-sizing: border-box;
  min-width: 0;
  width: 30%;
  height: auto;
  z-index: 0;
}

@media screen and (max-width: 1300px) { /* it does this when screen smaller*/
  #focus-img{
    width: 50%;
    height: auto;
  }
}


@media screen and (max-width: 1000px) {

  #focus{
    flex-direction: column;
    width: 100%;
    padding-bottom: 0;
  }

  #focus-text{
    width: 90%;
    font-size: 20px;
    background-color: #f5f5f5;
    padding: 40px;
    margin-right: 0;
    order: 2;
  }

  #focus-img {
    width: 65%;
    margin-bottom: -15px;
    order: 1;
    z-index: 2;
  }

    .maintext {
      display: inline-block;
      margin-top: 20%;
    }
    .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;
    }


}
