/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
    background-color: #FAFAFA;
    /*cursor: url('images/cursor.png'), auto;*/

}

.image-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.image-container img {
    position: absolute;
    width: 150px;
    height: auto;
    transition: transform 0.5s ease-out, top 0.5s ease-out, left 0.5s ease-out;
    will-change: transform, top, left;
}

.image-container img.hovered {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(1.8) !important;
    z-index: 100;
}

.content-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    justify-content: space-between;
}

/* Header */
header {
    width: 100%;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
}

.logo {
    width: 150px;
}

/* Main Content */
main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.hero-inner {
    margin-top: 20px;
    background-color: #001ABB;
    color: #FAFAFA;
    padding: 50px;
    border-radius: 50%;
    width: 480px;
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: -7px -7px 20px 7px rgba(0, 0, 0, 0.25), 7px 7px 20px 7px rgba(0, 0, 0, 0.25);
    /*opacity: 90%;*/
}

h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.waitlist-form {
    display: flex;
    margin-top: 20px;
}

.waitlist-form input {
    padding: 15px;
    border: none;
    border-radius: 50px 0 0 50px;
    width: 300px;
}

.waitlist-form button {
    padding: 15px 30px;
    border: none;
    background-color: #F4F0EA;
    color: #000000;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
}

/* Footer */
footer {
    width: 100%;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    color: #001ABB;
}

footer .fine-print {
    font-size: 8px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

footer ul li {
    display: inline-block;
    margin: 0 15px;
}

footer ul li a {
    color: #001ABB;
    text-decoration: none;
}

/*Mobile Styles*/
@media (max-width: 425px) {
    .hero-inner {
        width: 300px;
        height: 300px;
    }

    h1 {
        font-size: 18px;
        max-width: 180px;
    }
    .waitlist-form {
        /* Offset the form to keep it in viewport */
        max-width: 180px;
        flex-direction: column; /* Stack vertically for better mobile UX */
        gap: 10px;
    }

   .waitlist-form input {
        width: 180px;
        border-radius: 25px; /* Full rounded when stacked */
        align-self: center;
        
    }

    .waitlist-form button {
        width: 180px;
        border-radius: 25px; /* Full rounded when stacked */
    }

    .image-container img {
        width: 80px;
    }
    footer {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
        color: #001ABB;
    }

    footer .fine-print {
        font-size: 6px;
    }

    footer ul {
        list-style: none;
        padding: 0;
        margin-top: 10px;
    }

    footer ul li {
        display: inline-block;
        margin: 0 15px;
    }

    footer ul li a {
        color: #001ABB;
        text-decoration: none;
    }

    
}