@font-face {
  font-family: 'Creattion';
  src: url('./fonts/creattion-demo/Creattion Demo.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Lato';
  src: url('./fonts/Lato/Lato-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Lato';
  src: url('./fonts/Lato/Lato-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

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

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #0A0602;
  position: relative;
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./assets/Hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  text-align: left;
  margin-left: 80px;
  max-width: 600px;
}

.coming-soon-text {
  font-size: 85px;
  font-weight: normal;
  background: linear-gradient(180deg, #E0C7B1 0%, #E4E1D8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  font-family: 'Creattion', serif;
}

.subtitle {
  font-size: 28px;
  color: #E4E1D8;
  font-weight: 300;
  font-family: 'Lato', sans-serif;
}

.cup-wrap {
  width: 500px;
  height: 100vh;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.kettle {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.kettle img {
  height: 100vh;
  width: auto;
  object-fit: contain;
  object-position: bottom right;
}

.cup {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
}

.cup img {
  position: relative;
  z-index: 10;
  height: auto;
  max-width: 85%;
}

.smoke-wrap {
  position: absolute;
  right: 0;
  bottom: 200px;
  z-index: 5;
  max-width: 420px;
}

.smoke,
.smoke2,
.smoke3 {
  filter: blur(5px);
  transform-origin: 50% 50%;
  opacity: 0;
  
}

.smoke {
  animation: smoke1 3s linear infinite;
  animation-delay: 0s;
}

.smoke2 {
  animation: smoke2 3s linear infinite;
  animation-delay: 1s;
}

.smoke3 {
  width: 500px;
  animation: smoke3 3s linear infinite;
  animation-delay: 2s;
}

@keyframes smoke1 {
  0% {
    filter: blur(0px);
    transform: translateY(0px) scale(-1, 1);
    opacity: 0;
  }

  25% {
    filter: blur(3px);
    transform: translateY(-40px) scale(-1, 1.05);
    opacity: 0.5;
  }

  50% {
    filter: blur(5px);
    transform: translateY(-80px) scale(-1, 1.1);
    opacity: 1;
  }

  75% {
    filter: blur(5px);
    transform: translateY(-120px) scale(-1, 1.15);
    opacity: 0.5;
  }

  100% {
    filter: blur(7px);
    transform: translateY(-160px) scale(-1, 1.2);
    opacity: 0;
  }
}

@keyframes smoke2 {
  0% {
    filter: blur(0px);
    transform: translateY(0px) scale(1);
    opacity: 0;
  }

  25% {
    filter: blur(3px);
    transform: translateY(-40px) scale(1.05);
    opacity: 0.5;
  }

  50% {
    filter: blur(5px);
    transform: translateY(-80px) scale(1.1);
    opacity: 1;
  }

  75% {
    filter: blur(5px);
    transform: translateY(-120px) scale(1.15);
    opacity: 0.5;
  }

  100% {
    filter: blur(7px);
    transform: translateY(-160px) scale(1.2);
    opacity: 0;
  }
}

@keyframes smoke3 {
  0% {
    filter: blur(0px);
    transform: translateY(0px) scale(1);
    opacity: 0;
  }

  25% {
    filter: blur(3px);
    transform: translateY(-40px) scale(1.05);
    opacity: 0.5;
  }

  50% {
    filter: blur(5px);
    transform: translateY(-80px) scale(1.1);
    opacity: 1;
  }

  75% {
    filter: blur(5px);
    transform: translateY(-120px) scale(1.15);
    opacity: 0.5;
  }

  100% {
    filter: blur(7px);
    transform: translateY(-160px) scale(1.2);
    opacity: 0;
  }
}


@font-face {
  font-family: 'Creattion';
  src: url('./fonts/creattion-demo/Creattion Demo.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Lato';
  src: url('./fonts/Lato/Lato-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Lato';
  src: url('./fonts/Lato/Lato-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

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

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #0A0602;
  position: relative;
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./assets/Hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  text-align: left;
  margin-left: 80px;
  max-width: 600px;
}

.coming-soon-text {
  font-size: 80px;
  font-weight: normal;
  background: linear-gradient(180deg, #E0C7B1 0%, #E4E1D8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  font-family: 'Creattion', serif;
}

.subtitle {
  font-size: 32px;
  color: #E4E1D8;
  font-weight: 300;
  font-family: 'Lato', sans-serif;
}

.cup-wrap {
  width: 500px;
  height: 100vh;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.kettle {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.kettle img {
  height: 100vh;
  width: auto;
  object-fit: contain;
  object-position: bottom right;
}

.cup {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
}

.cup img {
  position: relative;
  z-index: 10;
  height: auto;
  max-width: 85%;
}

.smoke-wrap {
  position: absolute;
  right: 0;
  bottom: 200px;
  z-index: 5;
  max-width: 420px;
}

.smoke,
.smoke2,
.smoke3 {
  filter: blur(5px);
  transform-origin: 50% 50%;
  opacity: 0;
}

.smoke {
  animation: smoke1 3s linear infinite;
  animation-delay: 0s;
}

.smoke2 {
  animation: smoke2 3s linear infinite;
  animation-delay: 1s;
}

.smoke3 {
  width: 500px;
  animation: smoke3 3s linear infinite;
  animation-delay: 2s;
}

@keyframes smoke1 {
  0% {
    filter: blur(0px);
    transform: translateY(0px) scale(-1, 1);
    opacity: 0;
  }

  25% {
    filter: blur(3px);
    transform: translateY(-40px) scale(-1, 1.05);
    opacity: 0.5;
  }

  50% {
    filter: blur(5px);
    transform: translateY(-80px) scale(-1, 1.1);
    opacity: 1;
  }

  75% {
    filter: blur(5px);
    transform: translateY(-120px) scale(-1, 1.15);
    opacity: 0.5;
  }

  100% {
    filter: blur(7px);
    transform: translateY(-160px) scale(-1, 1.2);
    opacity: 0;
  }
}

@keyframes smoke2 {
  0% {
    filter: blur(0px);
    transform: translateY(0px) scale(1);
    opacity: 0;
  }

  25% {
    filter: blur(3px);
    transform: translateY(-40px) scale(1.05);
    opacity: 0.5;
  }

  50% {
    filter: blur(5px);
    transform: translateY(-80px) scale(1.1);
    opacity: 1;
  }

  75% {
    filter: blur(5px);
    transform: translateY(-120px) scale(1.15);
    opacity: 0.5;
  }

  100% {
    filter: blur(7px);
    transform: translateY(-160px) scale(1.2);
    opacity: 0;
  }
}

@keyframes smoke3 {
  0% {
    filter: blur(0px);
    transform: translateY(0px) scale(1);
    opacity: 0;
  }

  25% {
    filter: blur(3px);
    transform: translateY(-40px) scale(1.05);
    opacity: 0.5;
  }

  50% {
    filter: blur(5px);
    transform: translateY(-80px) scale(1.1);
    opacity: 1;
  }

  75% {
    filter: blur(5px);
    transform: translateY(-120px) scale(1.15);
    opacity: 0.5;
  }

  100% {
    filter: blur(7px);
    transform: translateY(-160px) scale(1.2);
    opacity: 0;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .content {
    margin-left: 40px;
    max-width: 500px;
  }

  .coming-soon-text {
    font-size: 60px;
  }

  .subtitle {
    font-size: 24px;
  }

  .cup-wrap {
    width: 400px;
  }

  .smoke-wrap {
    max-width: 340px;
    bottom: 160px;
  }

  .smoke3 {
    width: 400px;
  }
}

/* Small Tablet / Large Mobile */
@media (max-width: 768px) {
  body {
    flex-direction: column;
    justify-content: center;
  }

  .content {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    padding: 10vh 20px;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .coming-soon-text {
    font-size: 48px;
    margin-bottom: 15px;
  }

  .subtitle {
    font-size: 20px;
  }

  .cup-wrap {
    width: 100%;
    height: 50vh;
    position: relative;
    margin-top: auto;
  }

  .kettle img {
    height: 80vh;
  }

  .cup img {
    max-width: 60%;
  }

  .smoke-wrap {
    max-width: 280px;
    bottom: 120px;
    right: 35%;
    transform: translateX(50%);
  }

  .smoke3 {
    width: 300px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .content {
    padding: 35vh 15px;
    margin-bottom: 30px;
  }

  .coming-soon-text {
    font-size: 50px;
    margin-bottom: 12px;
  }

  .subtitle {
    font-size: 16px;
  }

  .cup-wrap {
    height: 45vh;
  }

  .kettle img {
    height: 65vh;
  }

  .cup img {
    max-width: 65%;
  }

  .smoke-wrap {
    max-width: 220px;
    bottom: 100px;
  }

  .smoke3 {
    width: 250px;
  }

  @keyframes smoke1 {
    0% {
      filter: blur(0px);
      transform: translateY(0px) scale(-1, 1);
      opacity: 0;
    }

    25% {
      filter: blur(3px);
      transform: translateY(-30px) scale(-1, 1.05);
      opacity: 0.5;
    }

    50% {
      filter: blur(5px);
      transform: translateY(-60px) scale(-1, 1.1);
      opacity: 1;
    }

    75% {
      filter: blur(5px);
      transform: translateY(-90px) scale(-1, 1.15);
      opacity: 0.5;
    }

    100% {
      filter: blur(7px);
      transform: translateY(-120px) scale(-1, 1.2);
      opacity: 0;
    }
  }

  @keyframes smoke2 {
    0% {
      filter: blur(0px);
      transform: translateY(0px) scale(1);
      opacity: 0;
    }

    25% {
      filter: blur(3px);
      transform: translateY(-30px) scale(1.05);
      opacity: 0.5;
    }

    50% {
      filter: blur(5px);
      transform: translateY(-60px) scale(1.1);
      opacity: 1;
    }

    75% {
      filter: blur(5px);
      transform: translateY(-90px) scale(1.15);
      opacity: 0.5;
    }

    100% {
      filter: blur(7px);
      transform: translateY(-120px) scale(1.2);
      opacity: 0;
    }
  }

  @keyframes smoke3 {
    0% {
      filter: blur(0px);
      transform: translateY(0px) scale(1);
      opacity: 0;
    }

    25% {
      filter: blur(3px);
      transform: translateY(-30px) scale(1.05);
      opacity: 0.5;
    }

    50% {
      filter: blur(5px);
      transform: translateY(-60px) scale(1.1);
      opacity: 1;
    }

    75% {
      filter: blur(5px);
      transform: translateY(-90px) scale(1.15);
      opacity: 0.5;
    }

    100% {
      filter: blur(7px);
      transform: translateY(-120px) scale(1.2);
      opacity: 0;
    }
  }
}