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

a {
  color: black;
}

::selection {
  background-color: rgba(0, 0, 0, 0.1);
}

body {
  margin: 0px;
  padding: 0px;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.background-image {
  position: fixed;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.05);
  background-image: url("../img/background2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

/* MAIN HEADER */
.main-header {
  font-family: "Mr Dafoe";
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20vh;
  width: 100vw;
}

.main-header__logo {
  width: 100%;
  height: 100%;
}

.logo-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}

.logo {
  max-height: 90%;
  transform: all 1s ease-in;
  opacity: 0;
}

.nav {
  opacity: 0;
  background-color: transparent;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.nav-link {
  padding: 0px;
  margin: 0px;
  font-family: "Montserrat";
  font-size: 7px;
  color: rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  transition: all 0.5s linear;

}

.nav-item :hover {
  transform: scale(1.1);
  color: black;
  font-weight: 200;
}

.nav-item :focus {
  transform: scale(1.1);
  color: black;
  font-weight: 400;
  outline: none;
}

/* LANGUAGE TOGGLER */


.arrow {
  position: fixed;
  top: 90vh;
  right: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  z-index: 2;
  opacity: 0.4;
  transition: all 0.5s linear;
}

.arrow:hover {
  opacity: 0.8;
}

.arrow:focus {
  opacity: 0.8;
  outline: none;
}

.fa-angle-up {
  color: white;
  transform: scale(2);
}

.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.landing-section {
  width: 100vw;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}


.content__section {
  width: 100vw;
  min-height: 80vh;
}

.section__header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  font-family: "Montserrat";
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
.section__header h2 {
  font-size: 20px;
  margin: 0px;
}

.section__article {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
}

/* HOME PAGE */

.indicator {
  padding: 8.5px 0px;
  margin: 0px;
  max-width: 20px;
  border-radius: 50%;
}

.carousel {
  opacity: 0;
}
.carousel__container {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-item img {
  max-height: 100%;
  width: 100%;
}

.control__wrapper {
  background-color: black;
  width: 40px;
  height: 40px;
  padding-top: 10px;
}

/* ABOUT */

.about__portait {
  display: flex;
  align-items: center;
  justify-content: center;
}

.portrait {
  width: 100%;
  max-height: 100%;
}

.description {
  margin: 15vw 10vw;
  text-align: justify;
}

.text {
  font-family: "Montserrat";
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
}

/* GALLERY */

.gallery-nav {
  border-top: none;
}

.gallery__content {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery__item {
  width: 90vw;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  margin: 9vh 0px;
}

.gallery__image {
  margin: 20px;
  max-width: 80vw;
  box-shadow: 6px 10px 8px 0px rgba(0, 0, 0, 0.2);
  transition: transform 0.6s;
}

.gallery__image:hover {
  transform: scale(1.03);
}

.gallery-details {
  list-style-type: none;
  display: flex;
  flex-direction: row;
}

.detail {
  width: 50px;
  padding: 10px;
  border-radius: 50%;
  transition: transform 0.6s;
}

.detail:hover {
  transform: scale(1.1);
}

.caption {
  padding: 3vw;
  font-family: "Montserrat";
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.8);
}

.orders {
  margin: 0;
  padding: 5vh 5vw;
}


/*CONTACT*/

.contact-form {
  width: 100%;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.form {
  width: 80vw;
  padding-top: 10vh;
  display: flex;
  flex-direction: column;
  align-items: center;

}

.form-label {
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
  padding: 10px 0px;
}

.form-group {
 width: 100%;
}

.contact_details {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  margin-top: 80px;

}

.button {
  width: 150px;
  height: 60px;
  margin-top: 40px;
  font-family: "Montserrat";
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 1vw;
  transition: all 0.5s linear;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button:hover {
  color: rgba(0, 0, 0, 0.7);
  font-weight: 200;
  border-color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
  transform: scale(1.1);
}

.button:focus {
  outline: none;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 200;
  background-color: rgba(0, 0, 0, 0.01);
  border-color: black;
  outline: none;
}
/* 
FOOTER */

.social-media {
  list-style-type: none;
  display: flex;
  width: 100vw;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.social-media__item {
  height: 30px;
  margin-right: 5vw;
  margin-left: 5vw;
}

.social-media__image {
  max-height: 100%;
  opacity: 0.6;
  transition: all 0.5s linear;
}

.social-media__item:hover .social-media__image {
  opacity: 0.8;
}

.screen-reader-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.copyright {
  margin-bottom: 5vh;
  margin-top: 5vh;
  padding: 10px;
  font-family: "Montserrat";
  font-size: 10px;
  text-align: center;
}

@media screen and (min-width: 365px) {
  .nav-link {
    font-size: 10px;
  }

  .section__header h2 {
    font-size: 20px;
  }

  .detail {
    width: 60px;
    padding: 10px;
  }
}

@media screen and (min-width: 700px) {
  .nav-item {
    flex-basis: 18%;
    padding: 10px 0px;
  }

  .nav-link {
    font-size: 18px;
  }

  .section__header h2 {
    font-size: 36px;
    padding: 24px;
  }

  .paragraph {
    font-size: 16px;
  }

  .detail {
    width: 75px;
    padding: 15px;
  }

  .exhibition {
    padding: 5vw;
  }
}

@media screen and (min-width: 900px) {

  .logo {
    max-height: 100%;

  }
  .main-header {
    height: 25vh;
  }

  .nav-item {
    flex-basis: 15%;
  }

  .section__header h2 {
    padding: 10px;
    font-size: 30px;
  }
  /* ABOUT */

  .article__about {
    width: 100%;
    display: flex;
    direction: row;
    justify-content: center;
    align-items: flex-start;
    min-height: 90vh;
    padding: 0px;
  }

  .about__portait {
    flex-basis: 50%;
  }

  .description {
    flex-basis: 50%;
    padding: 60px 60px;
    margin: 0px;
  }
  .caption {
    font-size: 15px;
  }


  .button {
    align-self: flex-end;
  }

}
@media screen and (min-width: 1090px) {


  .gallery__image:hover {
    transform: scale(1.01);
  }

  .detail {
    width: 150px;
    padding: 30px;
  }
}
