@import url('./reset.css');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

html, body{
  font-family: 'Source Sans Pro', sans-serif;
  min-width: 275px;
}

/************** Generic Blocks */
.heading-2{
	font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.85px;
  color: white;
  text-align: center;
}

.is-active{
	display: block;
}

/************** Header */
.header__top {
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: #62497c; */
  background-color: #333;
  color: white;
}

.popup__message{
  padding: 0.7rem;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  letter-spacing: 0.85px;
  font-size:0.89rem;
  font-weight: 400;
}

.popup__link{
  color: #f9f070;
  border-bottom: 1px solid #f9f070;
}
  
.fa-check-circle{
  font-size: 1.1rem;
  color: #f9f070;
}

.popup-hidden{
	display: none;
}

/******************** Main Navigation bar */
.header__bottom{
	display: flex;
  align-items: center;
  padding: 0 2.5rem;
}

.nav__logo{
	flex: 1;
}

.nav__img{
	width: 12.5rem;
  /* max-width: unset; */
  margin: 0.5rem;
  filter: contrast(0.7);
}

.nav__heading{
	font-size: 1.5rem;
  flex: 2;
  padding-left: 2rem;
  color: #54585e;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

.nav__bar{
	flex: 1;
}

.nav__bar--mobiles{
	position: fixed;
	transform: matrix(1,0,0,1, 0,0);
	-webkit-transform: matrix(1,0,0,1, 0,0);
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	right: 0;
	background-color: #6c5285;
	z-index: 10;  
  display: none;
  overflow: hidden;
}

.nav__menu{
	display: flex;
  justify-content: flex-end;
}

.nav__menu--mobiles{
	position: fixed;
	display: block;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}

.nav__item{
	list-style: none;
  padding-top: 5px;
}

.nav__item--mobiles{
	list-style: none;
	padding-top: 3rem;
	text-align: center;
}

.nav__link{
	font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  margin-right: 2rem;
  color:#54585e;
  font-weight: 700;
}

.nav__link--mobiles{
  font-size: 2rem;
	color: #ece3f3;
	letter-spacing: 2px;
	font-family: monospace;
	text-shadow: 1px 1px 1px black;
  text-decoration: none;
}

.nav__hamburgerIcon{
	align-self: center;
  display: none;
  cursor: pointer;
}

.hamburger__line{
	width: 25px;
  height: 3px;
  background-color: blanchedalmond;
  margin: 3px 0;
}

/* .closeIcon */
.header__closeIcon, .slider__closeIcon{
  display: none;
  z-index: 10;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
}

.header__closeIcon{
  top: 4.5rem;
  right: 5.5rem;
  position: fixed;
}

/******************** Hero*/
.hero{
 padding: 3rem 0;
 background-color: black;
}

/******************** About*/
.about {
  background-color: black;;
}

.about__inner{
	background-image: linear-gradient(#201032 1%, #593f5e 70%);
}

.about__columns{
  padding: 6rem 16rem 10rem;
  display: grid;
  gap: 3rem;
  grid-template-areas: "a  a" "b c";
}

.about__heading{
  grid-area: a;
}

.columns__left{
  grid-area: b;
  list-style-image: url('./img/flower.svg');
}

.columns__left li::marker,
.columns__right li::marker {
  font-size: 2.5rem;
}

.columns__right{
  grid-area: c;
  list-style-image: url('./img/flower.svg');
}


.columns__left, .columns__right{
	flex:1;
  color: white;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.7;
}

.columns-reveal{
	position: relative;
  transform: translateY(150px);
  -webkit-transform: translateY(150px);
  opacity: 0;
  transition: 2s all ease;
  -webkit-transition: 2s all ease;
}

.columns-active{
	transform: translateY(0px);
	-webkit-transform: translateY(0px);
  opacity: 1;
}

/******************** Gallery*/
.gallery{
	position: relative;
  background-image: linear-gradient(#201032 3%, #593f5e 30%);
}

.gallery__heading{
	padding: 7rem 0 3rem;
}

/**************Gallery Slider */
.gallery__slider{
	display: none;
}

.is-active{
  display: block;
}

.slider__inner{
	position: fixed;
  transform: matrix(1,0,0,1, 0,0);
  -webkit-transform: matrix(1,0,0,1, 0,0);
  width: 100vw;
  height: 100vh; 
  top: 0;
	left: 0;
	right: 0;
  background-color: #242424;
  z-index: 2;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  overflow: hidden;
}

.slider__figure{
	width: 100%;
}

.slider__controls{
  display: flex;
  align-items: center;
  width: 20%;
  justify-content: space-evenly;
  background-color: #f4f0f02e;
  border-radius: 10px;
  align-self: flex-end;
}

.slider__img{
	width: 40rem;
  margin: auto;
}

.fa-chevron-circle-left,
.fa-chevron-circle-right{
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  /* position: fixed;
  bottom: 1.8rem;
  right: 12rem; */
}

.fa-chevron-circle-right{
  right: 7rem;
} 

.gallery__showcase {
  position: relative;
  display: grid;
  grid-gap: 0;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  padding: 0 7rem 10rem;
}

.gallery__window {
  padding: 2rem;
  cursor: pointer;
  border: 9px solid #bdbcbda6;
  background: #252525;
  border-style: outset;
}

.gallery__window:hover{
  box-shadow: 0px 0px 12px 1px white;
  transform: scale(1.03);
  -webkit-transform: scale(1.03);
}

/****************** Video */
.video{
  background-image: linear-gradient(#150e1a, #18151e);
}

.video__inner{
  width: 60%;
  margin: auto;
  padding: 0 0 10rem;
}

.video__heading{
  padding: 6rem 0 6rem;
}

.video__window {
  position: relative;
  overflow: hidden;
  height: 30rem;
}

.video__iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/******************** Subscribe*/
.subscribe{
  background-color: #2e2740;
}

.subscribe__form{
  padding: 9rem 21rem 9rem 15rem;
  display: flex;
  color: white;
  font-weight: 300;
  line-height: 1.7;
}

.subscribe__left{
  flex:1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size:1.5rem;
}

.subscribe__highlight{
  font-weight: bolder;
  color: #bb8ceb;
}

.subscribe__right{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  padding-top: 1rem;
}

.subscribe__email{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.subscribe__email label{
  font-size: 1rem;
}


.subscribe__email input{
  width: 22rem;
  padding: 0.4rem 0.8rem;
  border-radius: 5px;
  font-size: 1.1rem;
  border: transparent;
  background-color: #cab3e7;

}

.subscribe__email input::placeholder{
  color: rgba(67, 67, 74, 0.68);
}

.subscribe__email input:focus {
  outline-style: none;
  box-shadow: 0px 0px 10px 1px #f2eff3;
  background-color: white;
  color: rgba(67, 67, 74);
  font-weight: 400;
}

.subscribe__button{
  display: block;
  padding: 0.5rem 1rem;
  color: white;
  background-color: #6b498d;
  border: none;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 700;
}

.subscribe__button:hover{
  background-color: #ff7e61;
}

/******************** Footer */
.footer{
  background-color:rgb(26, 26, 28);
}

.footer__inner{
  padding: 3rem;
  color: #ffffff8c;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
}

.footer__inner ul li{
  list-style: none;
  font-weight:100;
  font-size: 0.95rem;
  line-height: 2;
  letter-spacing: 0.85px;
}

.footer__left li a{
  text-decoration: none;
  color: #ffffff8c;
}

 .footer__inner ul li:nth-child(1){
  padding: 0.5rem 0;
  color:#ffffffba;
  border-bottom: #80808063 1px solid;
  font-weight: bolder;
  margin-bottom: 0.9rem;
}

.arrow{
  display: flex;
  padding-left: 2rem;
  padding-top: 1rem;
}

.fa-chevron-circle-up{
  font-size: 2rem;
  cursor: pointer;
  color: #ffffffba;
}

.footer .brand {
  text-decoration: none;
}
.brand div{
  color: #ffffff73;
  width: 100%;
  text-align: center;
  padding: 1rem;
  background: #141415;
}

/******************** Media Queries */

@media screen and (max-width: 84rem) {
  html{
    font-size: 82%;
  }

  .popup__message{
    font-size: 1rem;
  }

  .nav__logo{
    flex: 0.6;
  }

  .nav__heading{
    padding-left: 0;
  }

  .nav__link{
    font-size: 1.1rem;
    font-weight: 600;
  }

  .about__columns{
    padding: 6rem 10rem 10rem;
  }

  .columns__left, .columns__right{
    font-size: 1.3rem;
    line-height: 1.75;
    letter-spacing: .7px;
  }

  .heading-2{
    font-size: 2.5rem;
  }

  .gallery__showcase {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    padding: 0 10rem 10rem;

  }

  .subscribe__left{
    font-size: 1.8rem;
  }

  .subscribe__email label, .subscribe__button{
    font-size: 1.1rem;
  }

  .subscribe__right{
    padding-left: 1rem;
  }

  .footer__inner ul li{
    font-size: 1.1rem;
  }

  .footer__inner ul li:nth-child(1){
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 75rem) {

}


@media screen and (max-width: 64rem) {
  html{
    font-size: 80%;
  }

  .nav__logo{
    flex: 0.7;
  }

  .nav__img{
    width: 10rem;
  }

  .nav__bar{
    flex: 2;
  }
  
  .nav__heading{
    display: none;
  }

  .nav__menu{
    justify-content: space-between;
  }

  .nav__link{
    font-size: 1.25rem;
  }

   .about__columns{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    grid-template-areas: unset;
  }

  .columns__left, .columns__right{
    font-size: 1.25rem;
  }

  .gallery__showcase{
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    padding: 2rem 10rem 10rem;
  }

  .gallery__window{
    padding: 1rem;
    margin: 0rem;
  }

  .subscribe__form{
    padding: 9rem 5rem;
  }
}

@media screen and (max-width: 52rem) {
  .slider__inner{
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .slider__controls{
    align-self: center;
    margin-top: 2rem;
    width: 50%; 
  }
}

@media screen and (max-width: 42rem) {
    .nav__menu{
      justify-content: space-evenly;
    }

    .nav__link{
      font-size: 1.15rem;
    }

    .about__columns{
      padding-right: 4rem;
      padding-left: 4rem;
    }

    .gallery__showcase{
      grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
      padding: 2rem 2rem 10rem;
    }

    .subscribe__left{
      font-size: 1.6rem;
    }

    .footer__inner{
      display: grid;
      grid-template-areas: "a a b b"
          "c c c d";
      grid-gap: 1.5rem;
    }


    .footer__left{
      grid-area: a;
    }

    .footer__center{
      grid-area: b;
    }

    .footer__right{
      grid-area: c;
    }

    .arrow{
      grid-area: d;
    }
    /* Video Section */
    .video__inner{
      width: 95%;
      margin: auto;
      padding: 0 0 10rem;
    }
}


@media screen and (max-width: 32rem) {
  html{
    font-size: 70%; 
  }

  .popup__message{
    flex-direction: column;
    align-items: center;
  }

  .nav__bar{
    display: none;
  }

  .nav__logo{
    flex: 1.7;
  }

  .nav__hamburgerIcon{
    display: block;
  }

  .hamburger__line{
    background-color: #747474;
  }

   .about__columns{
    padding: 5rem 3rem 7rem;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    opacity: 1;
    transition: 2s all ease;
    -webkit-transition: 2s all ease;
  }

  .heading-2 {
    letter-spacing: -0.5px;
  }

  .gallery__showcase{
    /* grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr)); */
    gap:1rem;
    padding: 2rem 2rem 5rem;
  }

  .video__window {
    height: 25rem;
  }

  .video__inner{
    width: 90%;
  }

  .video__heading{
    padding-bottom: 3rem;
  }

  .subscribe__form{
    padding: 6rem;
    flex-direction: column;
  }

  .subscribe__right, .subscribe__email{
    align-items: center;
  }

  .subscribe__email input{
    text-align: center;
    width: 16rem;
   }
}

@media screen and (max-width: 26rem) {
  .columns__right, .columns__left{
    font-size: 1.4rem;
  }
  .nav__img{
    width: 8rem;
  }

  .gallery__window {
    border: 6px solid #747474;
  }

  .video__inner{
    width: 100%;
    padding: 1rem 1rem 8rem;
  }

  .video__window {
    height: 17rem;
  }

  .subscribe__form{
    padding: 4rem 2rem;
  }
 } 
