@charset "utf-8";

body {
  background-color: #e6e6e6;  
}
.wrap-all {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.menu-wrap {
  width: 100%;
  height: 100%;
  display: flex;
}
.menu-1 {
  background: url('../img/portfolio.jpg');
}
.menu-2 {
  background: url('../img/interview.jpg');
}
.menu-3 {
  background: url('../img/gallery.jpg');
}
.menu {
  width: 100%;
  background-position: center;
  background-size: cover;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.menu-frame {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-title {
  font-family: MetroItalic, sans-serif;
  line-height: 90px;
  font-size: 72px;
  letter-spacing: 2px;
  color: white;
  text-shadow: 0 0 20px black;
  transition: all 0.3s;
  z-index: 5;
  cursor: pointer;
}


.menu-1:hover .menu-title {
  text-shadow: 0 0 10px #ffbb73,
              0 0 20px #ffbb73,
              0 0 40px #ffbb73,
              0 0 80px #ffbb73,
              0 0 120px #ffbb73,
              0 0 130px black;
}
.menu-2:hover .menu-title {
  text-shadow: 0 0 10px #73b7ff,
              0 0 20px #73b7ff,
              0 0 40px #73b7ff,
              0 0 80px #73b7ff,
              0 0 120px #73b7ff,
              0 0 130px black;
}
.menu-3:hover .menu-title {
  text-shadow: 0 0 10px #73ffbb,
              0 0 20px #73ffbb,
              0 0 40px #73ffbb,
              0 0 80px #73ffbb,
              0 0 120px #73ffbb,
              0 0 130px black;
}








/********   P A R T I C L E   *********/

.particle-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  top: 0;
  border-radius: 50%;
  background: rgba(255, 234, 171, .4);
  box-shadow: 0 0 10px rgba(255, 234, 171, 1),
              0 0 20px rgba(255, 234, 171, 1),
              0 0 40px rgba(255, 234, 171, 1),
              0 0 60px rgba(255, 234, 171, 1),
              0 0 0 3px rgba(255, 234, 171, .1);
  animation: animate-particle 5s ease-in-out infinite;
}

@keyframes animate-particle {
  0% {
    transform: translateY(calc(100vh + 200px));
  }

  100% {
    transform: translateY(-200px);
  }
}

.particle:nth-child(5n + 1) {
  animation: particle-1 5s ease-in-out infinite;
}
.particle:nth-child(5n + 2) {
  animation: particle-2 5s ease-in-out infinite;
}
.particle:nth-child(5n + 3) {
  animation: particle-3 5s ease-in-out infinite;
}
.particle:nth-child(5n + 4) {
  animation: particle-4 5s ease-in-out infinite;
}
.particle:nth-child(5n + 5) {
  animation: particle-5 5s ease-in-out infinite;
}


@keyframes particle-1 {
  0% {
    opacity: 0;
    transform: translateY(calc(100vh + 200px));
  }
  10%, 20% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  30%, 40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  60%, 70% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(-200px) translateX(100px);
  }
}

@keyframes particle-2 {
  0% {
    transform: translateY(calc(100vh + 200px));
  }
  20% {
    opacity: 0;
  }
  30%, 40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translateY(-200px) translateX(-100px);
  }
}

@keyframes particle-3 {
  0% {
    opacity: 0;
    transform: translateY(calc(100vh + 200px));
  }
  10% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  30%, 60% {
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
  80%, 100% {
    opacity: 1;
    transform: translateY(-200px) translateX(200px);
  }
}

@keyframes particle-4 {
  0% {
    transform: translateY(calc(100vh + 200px));
  }
  30% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translateY(-200px) translateX(300px);
  }
}

@keyframes particle-5 {
  0% {
    transform: translateY(calc(100vh + 200px));
  }
  20% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(-200px) translateX(400px);
  }
} 








/******      I N T E R V I E W      ******/

.shutter {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #e6e6e6;
  animation: animation-shutter 0.3s ease-in-out;
}

@keyframes animation-shutter {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.picture {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('../img/hope.jpg');
  background-size: cover;
  background-position: center 20%;
  animation: animation-picture 0.5s ease-in-out;
  display: none;
}

@keyframes animation-picture {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}








/******       G A L L E R Y      ******/

.rain-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.rain-drop {
  position: absolute;
  top: 0;
  height: 150px;
  background: linear-gradient(transparent, #fff);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  filter: blur(2px);
  animation: animate-rain 5s linear infinite;
}

.rain-drop:nth-child(3n+1){
  background: linear-gradient(transparent, #FBF46D,#B4FE98,#77E4D4);
}
.rain-drop:nth-child(3n+2){
  background: linear-gradient(transparent, #B4FE98,#77E4D4,#FBF46D);
}
.rain-drop:nth-child(3n+3){
  background: linear-gradient(transparent, #77E4D4,#FBF46D,#B4FE98);
}

@keyframes animate-rain {
  0% {
    transform: translateY(-200px);
  }
  100% {
    transform: translateY(calc(100vh + 200px));
  }
}



















.menu-hover {
  font-size: 82px;
}

.menu-click {
  font-size: 180px;
  transition: 1.7s ease-in-out;
}

.expand {
    flex: 100%;
    transition: 1s ease-in-out;
    background-repeat: no-repeat;
}


.fade-out {
    animation: fadeOut ease 1.5s;
    -webkit-animation: fadeOut ease 1.5s;
    -moz-animation: fadeOut ease 1.5s;
    -o-animation: fadeOut ease 1.5s;
    -ms-animation: fadeOut ease 1.5s;
  }
  @keyframes fadeOut {
    0% {
      opacity:1;
    }
    100% {
      opacity:0;
    }
  }
  
  @-moz-keyframes fadeOut {
    0% {
      opacity:1;
    }
    100% {
      opacity:0;
    }
  }
  
  @-webkit-keyframes fadeOut {
    0% {
      opacity:1;
    }
    100% {
      opacity:0;
    }
  }
  
  @-o-keyframes fadeOut {
    0% {
      opacity:1;
    }
    100% {
      opacity:0;
    }
  }
  
  @-ms-keyframes fadeOut {
    0% {
      opacity:1;
    }
    100% {
      opacity:0;
  }
}



