*{
    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;
}

#content-wrapper{
    padding-top: 100px;
    display: flex;
    width: 100%;
}

#text {
    display: flex;
    flex-direction: column;
    width: 30%;
    padding: 0% 5%;
    font-family: proxima-nova, sans-serif;
    font-weight: 200;
    color: black;
    line-height: 1.5;
    font-size: 15px;
}

#text h1{
    font-family: linotype-didot, serif;
    font-weight: 600;
    font-size: 22px;
    padding-bottom: 30px;
}

#carousel-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 70%;
    height: 700px;
    background: white;
    overflow-x: hidden;
}

#scroll-carousel {
    display: flex;
    flex-direction: row;
    flex: 1;
    height: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
}

.carousel-image img {
    height: 700px; /* currently manual - not inheriting */
    width: auto;
    padding-right: 15px;
}

#scroll-carousel::-webkit-scrollbar {
    height: 60px;
}

#scroll-carousel::-webkit-scrollbar-track {
    background-color: white;
}

#scroll-carousel::-webkit-scrollbar-thumb {
    border-top: 25px solid rgba(0, 0, 0, 0);
    border-bottom: 25px solid rgba(0, 0, 0, 0);
    background-clip: padding-box;
    background-color: #ddd;
}

#scroll-carousel {
  scrollbar-color: #ddd white;
  scrollbar-width: thick;
}

#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;
}


br {
  line-height: 80%;
    }

.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;
}


@media screen and (max-width: 1080px) { /* it does this when screen smaller than 1080px*/
  .burger-button{
    display: flex;
  }

  #content-wrapper{
    position: relative;
    top: 82px;
  }

  .header{
    position: fixed;
    background-color: white;
    z-index: 200;
  }

  #header-menu {
    display: none;
    width: 100%;
    padding: 50px 0;
    flex-direction: column;
    background-color: #ddd;
    top: 82px;
    padding-left: 0%;
    z-index: 100;
    position: fixed;
  }

  #header-menu.show {
    display: flex;
  }

  #header-menu li{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 0;
  }

  #header-menu li a{
    padding: 50px 0;
    width: 100%;
    font-size: 17px; /* will need to change depending on screen size */
  }


  #header-menu a#shop-link {
      color: red;
  }


  #carousel-wrapper{
    order: 0;
    position: relative;
    width: 100%;
  }

  #text{
    order: 1;
    position: relative;
    width: 100%;
    font-size: 18px;
  }

  #content-wrapper{
    flex-direction: column;
    padding: 0;
    /*position: absolute;*/
  }

  #carousel-wrapper{
    width: 100%;
    height: auto;
  }

  #carousel-wrapper img{
    height: 500px;
    padding: 0 5px 10px 0;
  }
  #text h1{
    text-align: center;
    padding-top: 40px;
  }

  #footer{
    padding-top: 50px;
  }

  #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;
  }

}

@media screen and (max-width: 800px) { /* it does this when screen smaller than 800px*/
  #carousel-wrapper img{
    height: 300px;
}
