/*---------------------------*/
/* Global CSS*/
/*---------------------------*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Chivo", sans-serif;
  color: #fff;
}

h1 {
  text-align: center;
  font-family: "Clarendon Light";
  text-shadow: 2px 2px 2px #000000;
  font-size: 32px;
}

ul,
li {
  list-style: none;
}

a {
  color: #a5c0fe;
  text-decoration: none;
}

a:hover {
  color: #d8d0d0;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: auto;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../assets/images/wooden_floor.jpg);
  background-size: cover;
  background-attachment: fixed;
}

.content {
  padding-left: 20px;
  padding-right: 20px;
}

.shadow {
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
}

.light_transparent_background {
  background: rgba(255, 255, 255, 0.2);
}

.dark_transparent_background {
  background: rgba(59, 5, 5, 0.7);
}

.container {
  max-width: 1000px;
  width: 100%;
  padding-top: 40px;
}

/*---------------------------*/
/* HEADER
/*---------------------------*/

.header_albumi {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 5px 5px 19px 0px rgba(0, 0, 0, 0.9);
  background-color: rgb(51, 44, 56);
  height: 50px;
  width: 100%;
  justify-content: space-evenly;
}

/*---------------------------*/
/* Navigation */
/*---------------------------*/

.navigation_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}

.navigation_container_albumi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
}

.navigation {
  display: flex;
  align-items: center;
  font-size: 17px;
  letter-spacing: 1.5px;
  position: relative;
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 5px 5px 19px 0px rgba(0, 0, 0, 0.9);
  background-color: rgb(51, 44, 56);
  height: 50px;
  width: 100%;
  justify-content: space-evenly;
  z-index: 1;
}

.navigation .active {
  border-bottom: 3px solid /*#e97402*/ firebrick;
}

.navigation li {
  margin-left: 30px;
}

.navigation li a:link,
.navigation li a:visited {
  padding: 3px 0;
  color: white;
  border-bottom: 3px solid transparent;
  transition: border-bottom 0.5s;
}

.navigation li a:hover,
.navigation li a:active {
  border-bottom: 3px solid firebrick;
}

.hamburger_button {
  display: none;
}

.hamburger_menu {
  display: none;
}

.social_media {
  display: flex;
  align-items: center;
}

.social_media li {
  margin-right: 30px;
}

.social_media img {
  width: 22px;
}

.social_media img:hover {
  opacity: 0.7;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

/*---------------------------*/
/* FOOTER/
/*---------------------------*/

.footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 60px;
  box-shadow: 5px 5px 19px 0px rgba(0, 0, 0, 0.9);
}

.footer img {
  width: 27px;
  padding-top: 6px;
}

.footer a:hover {
  opacity: 0.7;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

/* Small tablet to big tablet: from 768px to 1023px */
@media screen and (max-width: 1023px) {
  .navigation_container {
    padding-top: 15px;
  }

  .navigation {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .navigation li {
    margin-left: 15px;
  }

  .social_media li {
    margin-right: 20px;
  }

  .social_media img {
    width: 20px;
  }
}

/* Small tablets: from 581px to 767px */
@media screen and (max-width: 767px) {
  .header_albumi {
    height: 42px;
  }

  .navigation_container {
    padding-top: 10px;
    justify-content: flex-start;
  }

  .navigation_container_albumi {
    padding-top: 10px;
    justify-content: flex-start;
  }

  .navigation {
    display: none;
  }

  .social_media {
    display: none;
  }

  .social_media_mobile {
    display: flex;
    align-items: center;
    margin-left: 25px;
    margin-top: 25px;
    width: 100%;
  }

  .social_media_mobile img {
    margin-right: 20px;
    width: 27px;
  }

  .hamburger_button {
    display: block;
    font-size: 21px;
    color: #fff;
    background-color: transparent;
    border: none;
    padding-left: 15px;
    z-index: 30;
    cursor: pointer;
  }

  .sticky_mobile {
    position: fixed;
    background-color: rgb(51, 44, 56);
    height: 42px;
    width: 100%;
    left: 0;
    top: 0;
    padding-top: 10px;
  }

  .hamburger_menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 20;
    background-color: rgb(51, 44, 56);
  }

  .hamburger_menu > ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    list-style-type: none;
    justify-content: center;
    padding: 0;
  }

  .hamburger_menu > ul > li {
    width: fit-content;
    margin: 20px;
  }

  .hamburger_menu > ul > li > a {
    text-decoration: none;
    font-size: 27px;
    color: whitesmoke;
    font-weight: 700;
    letter-spacing: 5px;
  }

  .hamburger_menu > ul > li > a:hover {
    color: #92b1fa;
    transition: 0.75s;
    cursor: pointer;
  }

  .footer {
    height: 50px;
  }

  .footer img {
    width: 22px;
    padding-top: 5px;
  }
}

/* Mobile phones: from 431px to 580px */
@media screen and (max-width: 580px) {
  h1 {
    font-size: 23px;
  }

  .footer {
    height: 45px;
  }

  .footer img {
    width: 18px;
    padding-top: 3px;
  }
}
