@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Montserrat:wght@400;700&display=swap');

/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body{

    background:
    radial-gradient(circle at center, rgb(255, 255, 255), transparent 60%),
    linear-gradient(rgba(58, 150, 96, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55, 138, 80, 0.15) 1px, transparent 1px);
    background-position: center, 0 0, 0 0;
    background-size: auto, 40px 80px, 80px 40px;
    background-color: #F3F2F2;
} 

main {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 600;
}

p {
    margin: 0;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}


html { 
    background-color: #F3F2F2;
    font-family: "Roboto", sans-serif;
    color: #2C2A2A;
}

button {
    background-color: #46AA8B;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    box-shadow: 5px 10px 0 rgba(0, 0, 0, 1);
    border: 2px solid #000;
}

h1 { 
    font-size: 64px;
    color: #2C2A2A;
    font-weight: 700;
     margin-bottom: 20px;
}
h4 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 2%;    
     margin-bottom: 20px;
}



input[type="email"] {
    padding: 10px;
    width: 300px;
    margin: 35px 20px;
    max-width: 100%;
;
    background-color: #F3F2F2;
    border: 2px solid #000;
    border-radius: 10px;
}


nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-centered {
    width: 85%;
    margin: 20px auto 0;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0  160px;
   
}

.images-section {
    display: none;
    position: absolute;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 400px;
    background-color: #F3F2F2;
}

.coming-soon {
    background-color: #46AA8B;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    width:  fit-content;
    margin-bottom: 10px;
    align-self: flex-start;
}

.coming-soon:hover { 
    box-shadow: 5px 10px 0 rgb(63, 63, 63);
}

.join-button:hover { 
    box-shadow: 5px 10px 0 rgb(63, 63, 63);
}



.email-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.join-button {
    width: 300px;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
}

.company-input {
    display: none;
}

#success-message {
    display: none;
    color: green;
    margin-top: 10px;
}

#message {
    margin-top: 10px;
    font-weight: 600;
    font-size: 20px;
}

/* Media Queries for Responsiveness */

/* Extra small devices (phones, <576px) */
@media (max-width: 575px) {
    .wrapper {
        margin: 0 20px;
    }
    .hero {
        padding: 20px 10px;
    }
    h1 {
        font-size: 48px;
        line-height: 1.3;
        margin: 10px 0;
    }
    h4 {
        font-size: 17px;
        line-height: 1.9;
        margin-bottom: 0px;
    }
    input[type="email"] {
        width: 250px;
        margin: 20px 10px;
    }
    .email-section {
        margin: 10px 0;
    }
    .join-button {
        width: 250px;
    }
}

/* Small devices (tablets, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .wrapper {
        margin: 0 40px;
    }
    .hero {
        padding: 30px 15px;
    }
    h1 {
        font-size: 56px;
        line-height: 1.2;
    }
    h4 {
        font-size: 22px;
        margin-bottom: 2px;
    }
    input[type="email"] {
        width: 280px;
        margin: 25px 15px;
    }
    .email-section {
        margin: 15px 0;
    }
    .join-button {
        width: 280px;
    }
}

/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .wrapper {
        margin: 0 80px;
    }
}

/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .wrapper {
        margin: 0 120px;
    }
}

/* Extra large devices (large desktops, ≥1200px) */
@media (min-width: 1200px) {
    .wrapper {
        margin: 0 160px; /* Default as is */
    }
}