/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #111;
    color: #fff;
    overflow: hidden; /* Prevent scrolling */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Navigation bar styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: #222;
    color: #fff;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
}

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

.navbar-left a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    width: 30px; /* Adjust size as needed */
    height: auto;
    margin-right: 10px; /* Space between logo and text */
}

.navbar h2 {
    font-size: 1.5em;
    color: #fff;
    font-weight: 600;
}

.navbar-right .nav-link {
    font-size: 1em;
    color: #111;
    background-color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
    margin-left: 15px;
}

.navbar-right .nav-link:hover {
    background-color: #ddd;
    color: #111;
}

/* Centered content styling */
.content {
    text-align: center;
    max-width: 800px;
    margin-top: 20px; /* Adjust margin to center content under navbar */
}

.content h1 {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 10px;
}

.content p {
    font-size: 1.2em;
    color: #ddd;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Call-to-action button styling */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    color: #111;
    background-color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
    background-color: #ddd;
    color: #111;
}

/* Form styling */
.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.waitlist-form label {
    font-size: 1em;
    color: #ddd;
    text-align: left;
}

.waitlist-form input {
    padding: 10px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
}

.waitlist-form input::placeholder {
    color: #bbb;
}

.submit-button {
    padding: 15px;
    font-size: 1em;
    color: #111;
    background-color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.submit-button:hover {
    background-color: #ddd;
}