/* style.css */

/* General Styles */
body {
    margin: 0;
    overflow-x: hidden;
    background-color: #fdffcf;
    color: #000000;
    font-family: 'Poppins', sans-serif;
}

/* Header Styles */
header {
    position: sticky;
    top: 0;
    background-color: #fdffcf;
    display: flex;
    align-items: center;
    padding: 13px 20px;
    z-index: 20;
}

.logo {
    width: 180px;
}

.menu {
    display: flex;
    gap: 20px;
    margin-left: auto;
}

.menu a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
}

.menu a:hover {
    color: #30D5C8;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: auto;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: black;
    margin: 3px 0;
    transition: 0.4s;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px; /* Adjust based on your header height */
        right: 0;
        background-color: #fdffcf;
        width: 100%;
        padding: 20px;
    }

    .menu.active a {
        padding: 10px 0;
        border-bottom: 1px solid #ccc;
    }
}

/* Footer Styles */
footer {
    background-color: #fdffcf;
    color: black;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9rem;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

/* Signup Form Styles */
.signup-container {
    max-width: 600px;
    margin: 50px auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.signup-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
    color: #30D5C8;
}

.signup-container form {
    display: flex;
    flex-direction: column;
}

.signup-container label {
    margin-top: 15px;
    font-weight: bold;
}

.signup-container input,
.signup-container select,
.signup-container textarea {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
}

.signup-container button {
    margin-top: 30px;
    padding: 15px;
    background-color: #30D5C8;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.signup-container button:hover {
    background-color: #28b3a6;
}

/* Hide the honeypot field */
.honeypot {
    display: none;
}

/* Error Messages */
.error-messages {
    background-color: #ffe6e6;
    border: 1px solid #ff5c5c;
    color: #ff0000;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.error-messages ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

/* Thank You Page Styles */
.thank-you-container {
    text-align: center;
    margin: 100px auto;
    font-family: 'Poppins', sans-serif;
}

.thank-you-container h2 {
    font-size: 2em;
    color: #30D5C8;
}

.thank-you-container p {
    font-size: 1.2em;
    color: #000;
}
