@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap'); 

body{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  font-family: 'Anton', sans-serif;
}
#message {
  margin-top: 15px;
  color: green;
  display: none;
  font-size: xx-large;
}

.container{
  width: 100vw;
  height: 100vh;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: none;
  background-image: url(./Assets/Background.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Screen 1 */
.screen-1{
  /* display: none; */

  min-width: 50%;
  height: 450px;
  border: none;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0;
  padding: 0.5rem 0.5rem;
  position: relative;
  border-radius: 25px;

  @media screen and (max-width: 960px){
    min-width: 80%;
    left: 16%;
  }

  @media screen and (max-width: 530px ){
    min-width: 70%;
    align-content: center;
    justify-content: center;
    position: absolute;
    margin: 0 auto; /* This centers the container itself */
  display: block; 
    
  }
}
.screen-1-info{
  position: absolute;
  top: 10%;
  left: -16%;
  line-height: 1rem;
  text-align: end;
  font-size: 6.5rem;

  @media screen and (max-width: 960px){
    position: absolute;
    top: 25%;
    left: -10%;
    min-width: 70%;
    line-height: 1rem;
    font-size: 4.5rem;
  }

  @media screen and (max-width: 530px){
    position: absolute;
    top: 30%;
    left: 12%;
    min-width: 70%;
    line-height: 1rem;
    font-size: 2.5rem;
    text-align: center;
  }
}
.click-btn{
  margin: 0;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  text-align: center;
  border: none;
  font-size: medium;
  background: linear-gradient(to right, white, aqua, blue);
  position: absolute;
  bottom: 2.5rem;
  right: -4rem;
  cursor: pointer;


  @media screen and (max-width: 530px){
    position: absolute;
    bottom: 2.5rem;
    right: 5rem;
    border: none;
  }
}
.click-btn:hover{
  scale: 1.2;
  transition: all 0.6s;
}

.rocket{
  height: 500px;
  position: absolute;
  top: -30%;
  right: -18%;
  transition: transform 1.5s ease-in-out;

  @media screen and (max-width: 960px){
    height: 400px;
    position: absolute;
    top: -20%;
    right: -16%;
  }

  @media screen and (max-width: 530px){
    height: 250px;
    position: absolute;
    top: -15%;
    right: -1%;
  }
}

/* rocket aniation */
@keyframes rocketMove {
  0% {
    transform: translate(0, 0) scale(1);
  }
  30% {
    transform: translate(-50px, 50px) scale(1.05); /* Moves slightly backward and down */
  }
  100% {
    transform: translate(85vw, -80vh); /* Moves out to top-right corner */
  }
}
@media screen and (min-width: 961px) {
  @keyframes rocketMove {
    0% {
      transform: translate(0, 0) scale(1);
    }
    30% {
      transform: translate(-70px, 50px) scale(1.05);
    }
    100% {
      transform: translate(50vw, -100vh) scale(1.2); /* more dramatic exit */
    }
  }
}

/* Fade-out animation */
@keyframes fadeOut {
  0% {
    opacity: 1;
    /* display: block; */
  }
  100% {
    opacity: 0;
    /* display: none; */
  }
}

/* Slide-out animation */
@keyframes slideOut {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100vw); /* Moves screen-1 out of viewport */
  }
}
/* Rocket animation class */
.rocket-launch {
  animation: rocketMove 1.5s ease-in-out forwards;
}

/* Fade-out animations for text and button */
.fade-out {
  animation: fadeOut 0.8s ease forwards;
}

/* Slide-out animation for screen-1 */
.slide-out {
  animation: slideOut 0.7s ease forwards;
}


/* screen 2 */
.screen-2{
  display: none;

  min-width: 55%;
  height: 500px;
  border: none;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0;
  padding: 0.5rem 0.5rem;
  position: relative;
  border-radius: 25px;

  @media screen and (max-width: 1024px){
    min-width: 76%;
    left: 14%;
    height: 350px;
    top: 6%;
    
    text-align: center;

  }
  @media screen and (max-width: 960px){
    min-width: 80%;
    left: 14%;

  }

  @media screen and (max-width: 530px){
    min-width: 80%;
    position: absolute;
    margin: 0 auto; /* This centers the container itself */
    display: none; 

    height: 350px;
    top: 6%;
    left:44%;
    text-align: center;
  }
}
.screen-2-info{
  font-size: 3rem;
  text-wrap: wrap;
  margin-left: 4rem;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;

  @media screen and (max-width: 960px){
    font-size: 2rem;
    text-wrap: wrap;
    line-height: 2.5rem;
    margin-top: 2rem;
    margin-left: 10%;
    justify-content: space-evenly;


  }

  @media screen and (max-width: 530px){
    text-align: center;
    text-wrap: wrap;
    justify-content: space-between;
    margin-top: 0.8rem;
    margin-left: auto;
    margin-right: auto;
  }
  @media screen and (max-width: 350px){
    
    margin-left: 2%;
  }
}
.rating{
  font-size: 1.5rem;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1rem;

  @media screen and (max-width: 960px){
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1rem;
  }

  @media screen and (max-width: 530px){
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }

}


.businessman{
  height: 550px;
  position: absolute;
  top: 20%;
  right: 0;

  @media screen and (max-width: 960px){
    height: 146%;
    position: absolute;
    top: 11%;
    left: 47%;
  }

  @media screen and (max-width: 790px){
    height: 135%;
    position: absolute;
    top: 12%;
    left: 52%;
  }
  @media screen and (max-width: 530px){
    height: 140%;
    position: absolute;
    top: 95%;
    left: 9%;
  }
}

/* Hide screen-2-info and businessman initially */
.screen-2-info, .businessman {
  opacity: 0; /* Initially hidden */
}

/* Screen 2 animation keyframes */

/* Slide in from the right */
@keyframes slideInRight {
  0% {
    transform: translateX(100vw); /* Initially out of the right viewport */
  }
  100% {
    transform: translateX(-45%); /* Fully visible */
  }
}

/* Fade-in animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Fade-out animation */
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Slide out to the left */
@keyframes slideOutLeft {
  0% {
    transform: translateX(-25vw);
    opacity: 1 ;
  }
  100% {
    transform: translateX(-100vw); /* Out of the viewport */
    opacity: 0;
  }
}

/* Screen-2 sliding in from the right */
.screen-2-enter {
  animation: slideInRight 1.5s ease forwards;
}

/* Fade in for screen-2-info and businessman */
.screen-2-info-fade-in {
  animation: fadeIn 1.5s ease forwards;
}

.businessman-fade-in {
  animation: fadeIn 1.5s ease forwards;
}

/* Fade out for screen-2-info and businessman */
.screen-2-info-fade-out {
  animation: fadeOut 1s ease forwards;
}

.businessman-fade-out {
  animation: fadeOut 1.3s ease forwards;
}

.screen-2-exit {
  animation: slideOutLeft 1.0s ease forwards;
}


/* screen 3 */
.screen-3{
  display: none;

  min-width: 55%;
  height: 500px;
  border: none;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0;
  padding: 0.5rem 0.5rem;
  position: relative;
  border-radius: 25px;

  @media screen and (max-width: 1024px){
    min-width: 76%;
    left: 14%;
    height: 350px;
    top: 6%;
    
    text-align: center;

  }
  @media screen and (max-width: 780px){
   top:-13%;
  }
  @media screen and (max-width: 960px){
    min-width: 80%;
    left: 14%;

  }

  @media screen and (max-width: 530px){
    min-width: 80%;
    position: absolute;
    margin: 0 auto; /* This centers the container itself */
    display: none; 

    height: 350px;
    top: 6%;
    left:87%;
    text-align: center;
  }
}
.screen-3-info{
  font-size: 3rem;
  text-wrap: wrap;
  margin-left: 4rem;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;

  @media screen and (max-width: 960px){
    font-size: 2rem;
    text-wrap: wrap;
    line-height: 2.5rem;
    margin-top: 2rem;
    
    margin-left: auto;
    margin-right: auto;
    justify-content: space-evenly;


  }

  @media screen and (max-width: 530px){
    text-align: center;
    text-wrap: wrap;
    justify-content: space-between;
    margin-top: 0.8rem;
    margin-left: auto;
    margin-right: auto;
  }
  @media screen and (max-width: 350px){
    
    margin-left: 2%;
  }
}
.rating{
  font-size: 1.5rem;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1rem;

  @media screen and (max-width: 960px){
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
    margin-right: auto;
  }

  @media screen and (max-width: 460px){
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }

}


.chef{
  height: 550px;
  position: absolute;
  top: 20%;
  right: 0;

  @media screen and (max-width: 960px){
    height: 550px;
    position: absolute;
    top: 20%;
    right: 0;
  }
  @media screen and (max-width: 1224px){
    height: 142%;
    position: absolute;
    top: 53%;
    left: 17%;
  }
  @media screen and (max-width: 1024px){
    height: 135%;
    position: absolute;
    top: 74%;
    left: -12%;
  }  @media screen and (max-width: 780px){
    height: 135%;
    position: absolute;
    top: 90%;
    left: 14%;
  }
  @media screen and (max-width: 460px){
    height: 135%;
    position: absolute;
    top: 110%;
    left: -12%;
  }
  @media screen and (max-width: 390px){
    height: 85%;
    position: absolute;
    top: 95%;
    left: -12%;
  }
  @media screen and (max-width: 350px){
    height: 90%;
    position: absolute;
    top: 122%;
    left: -12%;
  }
}

/* Hide screen-3-info and chef initially */
.screen-3-info, .chef {
  opacity: 0; /* Initially hidden */
}

/* Screen 3 keyframes */
@keyframes slideInScreen3 {
  0% {
    transform: translateX(100vw); /* Initially out of the right viewport */
  }
  100% {
    transform: translateX(-95%); /* Fully visible */
  }
}
@keyframes slideOutScreen3{
  0% {
    transform: translateX(-25vw);
    opacity: 1;
  }
  100% {
    transform: translateX(-150vw); /* Out of the viewport */
    opacity: 0;
  }
}
/* Fade-in animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Fade-out animation */
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* Screen-3 animation keyframes */
.screen-3-enter {
  animation: slideInScreen3 1.5s ease forwards;
}

.screen-3-info-fade-in {
  animation: fadeIn 1.5s ease forwards;
}

.chef-fade-in {
  animation: fadeIn 1.5s ease forwards;
}

.screen-3-info-fade-out {
  animation: fadeOut 1s ease forwards;
}

.chef-fade-out {
  animation: fadeOut 1s ease forwards;
}

.screen-3-exit {
  animation: slideOutLeft 1.0s ease forwards;
}


/* screen 4 */
.screen-4{
  display: none;

  min-width: 55%;
  height: 500px;
  border: none;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0;
  padding: 0.5rem 0.5rem;
  position: relative;
  border-radius: 25px;

  @media screen and (max-width: 1024px){
    min-width: 76%;
    left: 14%;
    height: 350px;
    top: 6%;
    
    text-align: center;

  }
  @media screen and (max-width: 960px){
    min-width: 80%;
    left: 14%;

  }
  @media screen and (max-width: 780px){
    top: -23%
  }

  @media screen and (max-width: 530px){
    min-width: 80%;
    position: absolute;
    margin: 0 auto; /* This centers the container itself */
    display: none; 

    height: 350px;
    top: 6%;
    left:126%;
    text-align: center;
  }
}
.screen-4-info{
  font-size: 3rem;
  text-wrap: wrap;
  margin-left: 4rem;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;

  @media screen and (max-width: 960px){
    font-size: 2rem;
    text-wrap: wrap;
    line-height: 2.5rem;
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-evenly;


  }

  @media screen and (max-width: 530px){
    text-align: center;
    text-wrap: wrap;
    justify-content: space-between;
    margin-top: 0.8rem;
    margin-left: auto;
    margin-right: auto;
  }
  @media screen and (max-width: 350px){
    
    margin-left: 2%;
  }
}
.rating{
  font-size: 1.5rem;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1rem;

  @media screen and (max-width: 960px){
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
    margin-right: auto;
  }

  @media screen and (max-width: 460px){
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }

}


.worker{
  height: 550px;
  position: absolute;
  top: 20%;
  right: 0;
  @media screen and (max-width: 1280px){
    height: 550px;
    position: absolute;
    top: 20%;
    left: 64%;
  }
  @media screen and (max-width: 1024px){
    left: 54%;
  }
  @media screen and (max-width: 960px){
    height: 550px;
    position: absolute;
    top: 20%;
    left: 52%;
  }
  @media screen and (max-width: 780px){
    height: 191%x;
    position: absolute;
    top: 95%;
    left: 0%;
  }
  @media screen and (max-width: 460px){
    height: 450px;
    position: absolute;
    top: 95%;
    left: 0%;
  }
}

/* Hide screen-3-info and chef initially */
.screen-4-info, .worker {
  opacity: 0; /* Initially hidden */
}


/* Screen 4 keyframes */
@keyframes slideInScreen4 {
  0% {
    transform: translateX(100vw); /* Initially out of the right viewport */
  }
  100% {
    transform: translateX(-140%); /* Fully visible */
  }
}
@keyframes slideOutScreen4 {
  0% {
    transform: translateX(-25vw);
    opacity: 1;
  }
  100% {
    transform: translateX(-220vw); /* Out of the viewport */
    opacity: 0;
  }
}
/* Fade-in animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Fade-out animation */
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* Screen-4 animation keyframes */
.screen-4-enter {
  animation: slideInScreen4 1.5s ease forwards;
}

.screen-4-info-fade-in {
  animation: fadeIn 1.5s ease forwards;
}

.worker-fade-in {
  animation: fadeIn 1.5s ease forwards;
}

.screen-4-info-fade-out {
  animation: fadeOut 1s ease forwards;
}

.worker-fade-out {
  animation: fadeOut 1s ease forwards;
}

.screen-4-exit {
  animation: slideOutScreen4 1.5s ease forwards;
}


/* screen-5 */
.screen-5 {
  display: none; /* Will be set to 'flex' via JS */
  justify-content: center;
  align-items: center;

  position: fixed; /* Fixed so it's centered in viewport */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Perfect centering */

  width: 60vw;
  height: 500px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  z-index: 999; /* Make sure it appears on top */
  transition: opacity 0.5s ease-in-out;
}

.screen-5 img {
  display: block; /* FIX: Previously was display: none */
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Responsive tweaks */
@media screen and (max-width: 768px) {
  .screen-5 {
    width: 90vw;
    height: 300px;
  }
}

.we-all{
  background-color: #fff;
  border-radius: 12px;
  text-align: center;
  position: fixed; /* Fixed so it's centered in viewport */
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%); /* Perfect centering */
  display: none;
  z-index: 1000;
  font-size: 2.5rem;
  padding: 10px 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 
  inset 0 5px 10px rgba(255, 255, 255, 0.1);
  transition: opacity 0.5s ease-in-out;

  @media screen and (max-width: 360px){
    font-size: 1.5rem;
  }
}

.fade-in {
  animation: fade-in 1s forwards ease-in-out;
}

.fade-out {
  animation: fade-out 1s forwards ease-in-out;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.coming-soon{
  display: none; /* Will be set to 'flex' via JS */
  flex-direction: column; /* stack items vertically */
  justify-content: center;
  align-items: center;
  text-align: center;
  position: fixed; /* Fixed so it's centered in viewport */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Perfect centering */

  border-radius: 25px;
  z-index: 999; /* Make sure it appears on top */
  transition: opacity 0.5s ease-in-out;
}

.scale-animation {
  transform: scale(0.8);
  opacity: 0;
  animation: scaleUp 1.2s ease-in-out forwards;
}

@keyframes scaleUp {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.text-wrapper{
  margin-bottom: 3rem;
  margin-left: 0px;
  margin-right: 0px;
}

.gotit{
  font-size: 3.5rem;
  background: linear-gradient(to right, orangered, black);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.email{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: anoton;
  
}

.email input{
  padding: 8px 12px;
  border-radius: 12px;
  border: none;
  /* font-family: anoton; */
  cursor: pointer;
  font-size: 1.5rem;
  
}

.email input:focus {
  outline: none;
  box-shadow: none;
}

.notifyButton{
  margin-top: 20px;
  padding: 8px 12px;
  border-radius: 12px;
  border: none;
  background-color: orangered;
  color: #fff;
  /* font-family: anoton; */
  cursor: pointer;
  font-size: 1.5rem;
}

.notifyButton:hover{
  scale: 1.1;
  
}



