@charset "utf-8";
/* CSS Document */

/* Div layer for the entire container. */
#dc_container {
  position: fixed;
  width: 100%;
  height: 100%;
  margin: auto;
  font-size: 0;
  top: 0;
  left: 0;
  z-index: 999999999999;
  display:none;
}
#dc_content {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  z-index: 100;
}

/* Invisible button for background clickthrough. */
#dc_background_exit {
  position: absolute;
  width: 25px;
  height: 25px;
  top: 10px;
  left: 10px;
  z-index: 998;
  cursor: pointer;
  opacity: 0;
}
#dc_bgImage {
  position: absolute;
  bottom: 0px;
  left: 0px;
}
#dc_expand_logo {
  position: absolute;
  left: 5px;
  top: 5px;
}

#dc_content img, #dc_content svg, #dc_content object {
  width: 100%;
  height: auto
}

a.exit_link {
  position:absolute;
  z-index:900;
  width:100%;
  height:100%;
  left:0;
  top:0;
  touch-action:manipulation;
  -webkit-user-select:none;
  user-select:none;
  -webkit-touch-callout:none;
  touch-callout:none;
  display:none
}

#dc_btnClose {
  display: block;
  display: none;
  position: absolute;
  width: 20px;
  height: auto;
  top:-20px;
  /*left: 3%;*/ right: -10px;
  z-index: 999;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  touch-callout: none
}

.content-container {
  height: 100%;
  width: 100%;
  background-color: #00000000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.content {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  
}

.elements-container {
  position: relative;
  bottom: 0;
  left: 0;
  height: 200px;
}

.bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 35px;
  width: 100vw;
  background-color: #452c21;
  transition: 0.2s;
  transform: translateY(50px);
  animation: slideinup 0.5s ease-in-out forwards;
}

.main-element-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transform: translateY(200px);
  animation: slideup 0.5s ease-in-out 0.8s forwards;
}

@keyframes slideup {
  0% {
    transform: translateY(200px);
  }

  100% {
    transform: translateY(0px);
  }
}

.gradient-bg {
  position: absolute;
  bottom: 0;
  left: calc(50vw - 400px);
  width: 800px;
  height: 250px;
  border-radius: 20px;
  background: rgb(176,113,86);
  background: linear-gradient(90deg, #b07156 0%, rgba(69,44,33,1) 100%);
  transform: translateY(125px);
  transition: 0.3s ease-in-out;
}

.elements {
  position: relative;
  height: 100%;
  width: 100%;
}

.cup {
  position: absolute;
  top: -130px;
  right: -30px;
  width: 350px !important;
  height: auto !important;
  z-index: 2;
  transition: 0.3s ease-in-out;
}

.beans {
  position: absolute;
  top: -20px;
  right: 70px;
  width: 150px !important;
  height: auto !important;
  z-index: 1;
  transition: 0.3s;
}

.headings-container {
  width: 450px;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.first-heading, .second-heading {
  position: absolute;
  color: #dde0bd;
  left: 40px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;

}

.first-heading {
  font-size: 37px;
  top: 15px;
  opacity: 1;
  transition: 0.2s;
  transition-delay: opacity 0.3s;
}

.second-heading {
  font-size: 26px;
  top: 15px;
  opacity: 0;
  transition: 0.2s 0s;
}

.explore-btn {
  padding: 12px;
  background-color: #dde0bd;
  width: fit-content;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #252627;
  border-radius: 4px;
  position: absolute;
  top: 120px;
  left: 40px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gradient-bg:hover {
  
  transform: translateY(80px);
  
  .bottom-bar {
    height: 70px;
  }

  .cup {
    top: -180px;
    right: -52px;
    width: 400px !important;
    transform: rotate(10deg);
  }

  .beans {
    width: 400px !important;
    top: -60px;
    right: -50px;
  }

  .first-heading {
    opacity: 0;
  }

  .second-heading {
    opacity: 1;
    transition-delay: 0.3s;
  }

  .explore-btn {
    opacity: 1;
    transition-delay: 0.5s;
  }
}

@keyframes slideinup {
  0% {
    transform: translateY(50px);
  }

  100% {
    transform: translateY(0px);
  }
}

body {
  background-image: url('img/website-mockup.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  height: 200vh;
  overflow-y: scroll;
}