body {
    margin: 0;
    font-family: Helvetica, sans-serif;
    background-color: #093233;
    overflow-x: hidden;
    max-width: 100%;
}

@font-face {
    font-family: Macho;
    src: url(fonts/Macho-Black.otf)
    /* Add other font formats if needed (e.g., .ttf, .otf) */
}

.parallax {
    min-height: 40em;
    height: 80vh;
    overflow: hidden;
    position: sticky;
    top: 0; /* Add top: 0; to ensure it sticks to the top */
}

.images {
    height: 100vh;
    overflow: hidden;
}

.images img {
    position: absolute;
    left: 0;
    width: 100%;
    height: 125%;
    object-fit: cover;
}

.img1 {
    z-index: 1;
}

.img2 {
    z-index: 2;
}

.img3 {
    z-index: 4;
}

.img4 {
    z-index: 3;
    filter: drop-shadow(0 0 20px #000000); /* Adjust shadow size */
}

.img5 {
    z-index: 5;
}

.logo-container {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%); /* Center the logo horizontally */
    z-index: 6;
}

.logo {
    width: 150px;
    height: auto;
    filter: drop-shadow(2px 2px #000);
}


.about {
    background: #093432;
    color: #fff;
    padding: 1em;
    padding-left: 10%;
    padding-right: 10%;
    z-index: 5;
    position: relative;
    text-align: center;
}

.transition {
    position: absolute;
    width: 100%;
    z-index: 5;
    transform: translateY(-150px);
}

.button-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);

}

#join-beta-button {
    background-color: #007bff;
    color: #fff;
    padding: 15px 50px;
    z-index: 100;
    font-size: 28px;
    border: none;
    cursor: pointer;
    position: absolute;
    border-radius: 32px;
    filter: drop-shadow(0 0 20px #000000); /* Adjust shadow size */
}

#join-beta-button:hover {
    background-color: #0056b3;
}


.about h1 {
    font-family: Macho;
    max-width: 35em;
    font-size: 3em;
    line-height: 40px;
    margin: 1em auto;
    color: #3ca39e;
    transform: translateY(20px);
}

.about p {
    font-size: 1.1em;
}

@media screen and (max-width: 600px) {
    .about h1 {
        font-size: 3em;
    }
}

.about-beta {
    background: #093432;
    color: #fff;
    padding: 1em;
    padding-left: 10%;
    padding-right: 10%;
    z-index: 7;
    position: relative;
    text-align: center;
}

.about-beta h1 {
    font-family: Macho;
    max-width: 35em;
    font-size: 3em;
    line-height: 40px;
    margin: 1em auto;
    color: #3ca39e;
    transform: translateY(-25px);
}

.about-beta p {
    transform: translateY(-25px);
    font-size: 1.1em;
}

#beta-section {
    display: flex; /* Use flexbox to center-align items */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically */
    min-height: 30vh; /* Adjust the minimum height as needed */
    position: relative;
    background-color: #04292a;
}

.beta-content {
    text-align: center;
}

.beta-content h2 {
    font-family: Macho;
    max-width: 35em;
    font-size: 2em;
    line-height: 15px;
    color: #3ca39e;
}

.beta-content p {
    max-width: 55em;
    font-size: 1.25em;
    line-height: 30px;
    color: #3ca39e;
    transform: translateY(-15px);
}

.beta-content input {
    height: 40px;
    width: 300px;
    border-radius: 20px;
    transform: translateY(-20px);


}

.beta-content button {
    background-color: #007bff;
    color: #fff;
    padding: 15px 50px;
    font-size: 22px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    z-index: 8;
    border-radius: 32px;
    filter: drop-shadow(0 5px 5px #000000); /* Adjust shadow size */
    outline: none; /* Remove outline on button */
    margin-bottom: 25px;
}

.feedback {
    color: #fff;
    padding: 1em;
    padding-left: 10%;
    padding-right: 10%;
    z-index: 7;
    position: relative;
    text-align: center;
    transform: translateY(-45px); /* Adjust the value as needed */
}

#footer {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 6vh;
    background-color: #000000;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;

}

.footer-left {
    display: flex;
    align-items: center;
}

.footer-logo {
    top: 15px;
    transform: translateX(50%); /* Center the logo horizontally */
    width: 150px;
    height: auto;
    flex-shrink: 0; /* Prevent logo from shrinking */
}

.footer-right a {
    color: white;
    text-decoration: none;
    text-align: right;
    margin-left: 0px;
    font-size: 14px;
}

.footer-right a:hover {
    text-decoration: underline;
}

.footer-right a:last-child {
    margin-right: 0px;
}

.footer-left p {
    color: white;
    font-size: 10px;
    margin: 0;
}

/* carousel style */

.carousel-container {
    position: relative;
    max-width: 600px;
    padding-top: 25px;
    margin: auto;
    overflow: hidden;

  }
  
  .carousel-slide {
    display: flex;
  }
  
  .carousel-image {
    max-width: 100%;
    display: block;
    border-radius: 25px;
    filter: drop-shadow(0 0 20px, #000);
    transition: transform 0.5s ease;
    
  }
  
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  .prev {
    left: 0;
    border-radius: 0 3px 3px 0;
  }

  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }

  .carousel-dots {
    text-align: center;
  }
  
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 10px 2px;
    background-color: #728076;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active, .dot:hover {
    background-color: #ffffff;
  }
  
  .carousel-slide {
  display: flex;
  width: 300%; /* Adjust based on the number of images; for 3 images, it's 300% */
  transition: transform 0.6s ease-in-out;
}

.carousel-image {
  width: 33.3333%; /* This should be 100 divided by the number of images */
  box-sizing: border-box;
  display: inline-block; /* Changed from block to inline-block */
  /* Removed the max-width: 100%; to allow multiple images side by side */
}

.banner {
    display: flex;
    max-height: 170px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner h1 {
    position: relative;
    margin-top: 60px;
    font-family: Macho;
    max-width: 35em;
    font-size: 1.6em;
    line-height: 5px;
    color: #3ca39e;
}

.banner svg {
    width: 100%; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Ensure the SVG is displayed as a block element */
    z-index: 100;
}

.banner form {
    display: flex;
    flex-direction: column;
    align-items: center;
 
}

.banner form .mc-field-group {
    margin-bottom: 10px;
}

.banner form .mc-field-group input {
    height: 40px;
    width: 300px;
    border-radius: 20px;
    margin-bottom: 25px;

}

.banner form button {
    margin-top: 10px;
    background-color: #007bff;
    color: #fff;
    padding: 12px 40px;
    font-size: 18px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    z-index: 8;
    border-radius: 32px;
    filter: drop-shadow(0 2px 0px #000000); /* Adjust shadow size */
    outline: none; /* Remove outline on button */
    transform: translateY(-60px);
    
}
