* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    text-align: center;
    overflow-x: hidden;
}

/* Header Styles */
header {
    background-color: #1C1C1C;
    padding: 0;
    width: 100%;
    border-bottom: 3px solid #fff;
    position: fixed;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center; /* Center logo */
}

.header-container {
    display: flex;
    justify-content: space-between; /* Ensure left and right sections stay on the sides */
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.header-item-left, .header-item-right {
    flex: 1; /* Keep them on the sides */
}

.header-logo {
    flex: 0; /* Keep the logo in the center */
}


/* Center title in header */
.header-title {
    flex: 1;
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.logo img {
    max-width: 150px;
    max-height: 80px;
}

.menu {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.menu a {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 1.3em;
    background-color: transparent;
    padding: 4px 6px;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
    margin: 0 15px;
}

.menu a:hover {
    color: #000;
    background-color: #fff;
}


/* Video Background (Unchanged) */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Dark Overlay (Unchanged) */
.dark-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

/* Content Styles */
.content {
    position: relative;
    flex: 1;
    width: 100%;
    overflow: hidden;
    padding-top: 225px;
    z-index: 1;
}

.text-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 75px auto 0 auto;
    padding: 40px 20px;
    color: #fff;
    font-size: 18px;
}

/* Text Content Styles */
.text-content h2 {
    font-size: 2em;
    margin-bottom: 30px;
    font-weight: 300;
}

.text-content h1 {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 40px;
}

.text-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #ccc;
    text-transform: uppercase;
}

/* Form Styles */
form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 600px;
    margin: 40px auto 0 auto;
}

form input[type="email"] {
    flex: 1 1 auto;
    max-width: 350px;
    padding: 15px 20px;
    font-size: 1.1em;
    border: 2px solid #666;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #eee;
    outline: none;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

form input[type="email"]::placeholder {
    color: #888;
}

form input[type="email"]:focus {
    border-color: #aaa;
    background-color: rgba(0, 0, 0, 0.85);
}

form button {
    flex: 0 0 auto;
    padding: 16px 25px;
    background-color: #C51D3B;
    color: #fff;
    border: none;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 0;
}

form button:hover {
    background-color: #A3172D;
}

/* Limited Spots Message */
form .limited-spots {
    width: 100%;
    max-width: 350px;
    margin: 5px auto;
    color: #fff;
    font-size: 1em;
}

/* Footer Styles (Unchanged) */
footer {
    background-color: #1C1C1C;
    padding: 100px 0;
    color: #ccc;
    width: 100%;
    border-top: 3px solid #fff;
    text-align: center;
    position: relative;
    z-index: 1000;
}

/* Media Queries */

@media (max-width: 800px) {
    .content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px 20px;
    }

    .hamburger span {
    height: 3px;
    width: 25px;
    background: #fff;
    margin-bottom: 4px;
    border-radius: 2px;
    }

    .text-content {
        order: 2;
        margin-bottom: 20px;
        width: 100%;
    }

    form {
        order: 1;
        width: 100%;
        max-width: 450px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    form .limited-spots {
        order: 3;
        margin-top: 40px;
    }

    form input[type="email"],
    form button {
        width: 100%;
        margin-bottom: 10px;
    }

    form button {
        max-width: 180px;
        margin: 0 auto;
    }

    footer {
        padding: 50px 0;
    }
}

@media (max-width: 600px) {
    header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
    }

    .menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #1C1C1C;
        flex-direction: column;
        align-items: center;
        z-index: 999;
    }

    .menu.active {
        display: flex;
    }

    .menu a {
        padding: 15px 0;
        width: 100%;
        text-align: center;
        border-top: 1px solid #fff;
    }

    .hamburger {
        display: flex;
    }

    .text-left,
    .text-right {
        display: none;
    }

    .text-content h1 {
        font-size: 3.5em;
        margin-bottom: 30px;
    }

    .text-content h2 {
        font-size: 3em;
        margin-bottom: 30px;
    }

    .text-content p {
        font-size: 1.95em;
        margin-bottom: 15px;
    }

    form input[type="email"],
    form button {
        padding: 15px 15px;
        font-size: 1em;
    }

    form button {
        max-width: 300px;
        margin: 0 auto;
    }

    form .limited-spots {
        margin-top: 0px;
    }

    footer {
        padding: 30px 0;
    }
}
