* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", sans-serif;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

.header {
  min-height: 100vh;
  width: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
  background-color: #ffffff;
}


nav {
  display: flex;
  padding-top: 4%;
  padding-left: 9%;
}


nav img {
  width: 150px;
}


.hero {
  width: 82%;
  max-width: 1200px; 
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
}



.image-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 10px 40px 40px 10px;
  width: 100%;
}

.image-container {
  position: relative;
  width: 250px;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  opacity: 0;
  animation: fadeInContainer 1s ease-in-out forwards;
}

.image-container:nth-child(1) { animation-delay: 0.5s; }
.image-container:nth-child(2) { animation-delay: 1s; }
.image-container:nth-child(3) { animation-delay: 1.5s; }
.image-container:nth-child(4) { animation-delay: 2s; }

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.random-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.8s ease-in-out;
  opacity: 1;
}

.random-image.next-image {
  opacity: 0;
  z-index: 1;
}

.random-image.fade-out {
  opacity: 0;
}

.random-image.fade-in {
  opacity: 1;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 34, 32, 0.6);
  z-index: 2;
  pointer-events: none;
}

@keyframes fadeInContainer {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.hero h1 {
  font-size: 92px;
  font-weight: 900;
  margin-bottom: 34px;
}

.croppa {
  font-size: 92px;
  animation: colorChange 6s ease-in-out infinite;
}

@keyframes colorChange {
  0%, 100% {
    color: #002220;
  }
  33% {
    color: #00ff8b;
  }
  66% {
    color: #ff841e;
  }
}

.fade-in-text {
  margin: 22px 0;
  font-size: 21px;
  font-weight: 500;
  color: #002220;
  opacity: 0;
  animation: fadeIn 3s ease-in-out forwards;
  animation-delay: 0.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.waitlist {
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  border: 1px solid #ff841e;
  border-radius: 12px;
  background-color: #ff841e;
  padding: 14px 38px;
  font-size: 20px;
  margin-top: 20px;
  font-weight: 600;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s, transform 0.2s;
}

.waitlist:hover {
  border-color: #ff841e;
  background-color: #ff841e;
}

.imagediv {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 650px;
  padding-right: 20px;
  padding-bottom: 50px;
  max-width: 100%;
  
}

.imagediv img {
  max-width: 100%;
  height: auto;
}




.footer {
  display: flex;
  align-items: center;
  justify-content: center; 
  left: 0;
  padding-bottom: 50px;
  width: 100%;
  gap: 900px; /
  
}

.icons {
  display: flex;
  gap: 40px;
  
}

.fa-brands {
  padding-right: 30px;
  font-size: 28px;
  color: #002220;
  cursor: pointer;
  transition: color 0.3s, transform 0.2s;
}

.fa-brands:hover {
  color: #ffffff;
  
}

.slogan {
  font-weight: 500;
  font-size: 18px;
  color: #002220;
  font-style: italic;
 
}

.footer2 {
  display: none;
}



@media (max-width: 1024px) {
  nav {
    padding-top: 10%;
  }

  nav img {
    width: 120px;
  }



.hero h1 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 19px;
  line-height: 45px;
  margin-right: 20px;
}

.croppa {
  font-size: 42px;
  animation: colorChange 6s ease-in-out infinite;
}




  .fade-in-text {
    margin: 12px 0;
    font-size: 11px;
    font-weight: 500;
     margin-right: 20px;
  }
  
  
  .footer2{
    display: block;
    flex-direction: column;
    align-items: center; 
    padding-bottom: 20px;
  }

  .waitlist {
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  border: 1px solid #ff841e;
  border-radius: 12px;
  background-color: #ff841e;
  padding: 14px 38px;
  font-size: 20px;
  margin-top: 20px;
  font-weight: 600;
  position: relative;
  cursor: pointer;
   margin-right: 20px;
  transition: background-color 0.3s, border-color 0.3s, transform 0.2s;
}




  .hero {
    margin-top: 100px;
}



}

@media (max-width: 800px) {
 
  .image-grid {
    max-width: 90%;
  display: block;
  align-items: center;
  padding: 00px 00px 00px 00px;
}


.imagediv {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 240px;
  padding-bottom: 20px;
  max-width: 1200px; 
  width: 100%;
  box-sizing: border-box;
  
}

.image-container {
    width: 220px; 
    height: 120px;
      margin: 20px;
    
  
}




  .fade-in-text {
    font-size: 17px;
  }
  
  .waitlist {
    padding: 14px 40px;
    font-size: 18px;
  }
  
  .footer {
    display: none;
  }

    .footer2 {
    bottom: 30px;

  }

  .icons2 {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding-bottom: 20px;
    margin-top: 15px; 
    width: 100%; 
  }

  .fa-brands2 {
  padding-right: 30px;
  font-size: 28px;
  color: #002220;
  transition: color 0.3s, transform 0.2s;
}


  .slogan2 {
    font-size: 16px;
    letter-spacing: 1px;
    text-align: center;
    margin-right: 0; 
    color: #002220;
    width: 100%; 
  }


}












/*---- waitlist page----*/



.signupheader {
  min-height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(0, 34, 32, 0.9), rgba(0, 34, 32, 0.7)),
    url(images/signup-image.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}


.signup-p{
  font-size: 13px;
  margin-top: 15px;
  margin-bottom: 24px;
}

.signup-h1{
  margin-top: 15px;
  font-size: 30px;
}

.signup-box {
  width: 30%;
  color: white;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: #002220;
  padding: 50px 20px;
  border-radius: 30px;
}


.signup-logo{
  width: 30%;
}



.signup-box input{
  width: 75%;
  padding: 15px;
  margin-bottom: 17px;
  outline: none;
  border-radius: 7px;
  border: 1px solid #002220;
}


.signup-box select{
  width: 75%;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  outline: none;
  border-radius: 7px;
  border: 1px solid #002220;
}


.signup-box button{
  width: 75%;
  padding: 15px;
  margin-bottom: 17px;
  outline: none;
  font-weight: 600;
  color: #002220;
  background-color: #00ff8b;
  border-radius: 7px;
  border: 1px solid #002220;
  cursor: pointer;
}






@media (max-width: 700px){
  .signup-box {
    width: 80%;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: #002220;
    padding: 50px 10px;
    border-radius: 20px;
  }
  

  .signup-h1{
    margin-top: 10px;
    font-size: 20px;
  }
  

  .signup-logo{
    width: 40%;
  }

  .signup-p{
    font-size: 10px;
    margin-top: 3px;
    margin-bottom: 15px;
  }

  .signup-box input{
    padding: 12px;
    margin-bottom: 10px;
  }

  .signup-box select{
    width: 77%;
    padding: 12px;
    outline: none;
    border-radius: 15px;
    border: 1px solid #002220;
  }


  .signup-box button{
    width: 77%;
    padding: 12px;
    margin-bottom: 10px;
  }
}

.signup-box button:hover {
  background-color: #00e67a;
}


.form-message {
  margin-top: 12px;
  font-size: 13px;
  color: #ffffff;
  display: none;
}

.signup-box label {
  display: block;
  margin-top: 10px;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 500;
  text-align: left;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}

.signup-box input:focus,
.signup-box select:focus,
.signup-box button:focus {
  outline: 2px solid #00ff8b;
}

.signup-box button:hover {
  background-color: #00e67a;
}

/* Thank-you page refinement */
.thank-you-box {
  padding-top: 60px;
  padding-bottom: 60px;
}

.thank-you-box .waitlist {
  margin-top: 25px;
  display: inline-block;
}
