/* Brand Colors */
:root {
    --indigo-black: #141824;
    --ivory-key: #F8F7F4;
    --antique-gold: #D7A84E;
    --teal-wave: #00A9B4;
    --royal-violet: #6A4CFF;
    --graphite-gray: #8D8F93;
    --heading-font: 'EB Garamond', serif;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--indigo-black);
    color: var(--ivory-key);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Header styles */
.header {
    text-align: center;
    padding: 2rem 0;
}

.header .logo {
    max-width: 300px;
    margin-bottom: 1.5rem;
}

/* Content styles */
.content {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.intro {
    text-align: center;
    margin-bottom: 3rem;
}

.intro h1 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--ivory-key);
}

.intro p {
    font-size: 1.2rem;
    color: var(--graphite-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Form styles */
.waitlist-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-family: var(--heading-font);
    color: var(--ivory-key);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.form-header p {
    color: var(--graphite-gray);
}

/* Flodesk form styles */
#flodesk-form-wrapper {
    width: 100%;
}

.ff-681d1d1fc0fdb4f4807c9c92__container {
    background-color: var(--ivory-key) !important;
    padding: 2rem !important;
    border-radius: 12px !important;
}

.ff-681d1d1fc0fdb4f4807c9c92__title,
.ff-681d1d1fc0fdb4f4807c9c92__subtitle {
    font-family: var(--heading-font) !important;
    color: var(--indigo-black) !important;
}

.ff-681d1d1fc0fdb4f4807c9c92__title {
    font-size: 2.5rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
}

.ff-681d1d1fc0fdb4f4807c9c92__subtitle {
    font-size: 1.2rem !important;
    font-weight: 400 !important;
    margin-bottom: 2rem !important;
    color: var(--graphite-gray) !important;
}

.fd-form {
    width: 100% !important;
    max-width: 100% !important;
}

.ff-681d1d1fc0fdb4f4807c9c92__control {
    background-color: white !important;
    border: 1px solid rgba(20, 24, 36, 0.2) !important;
    color: var(--indigo-black) !important;
}

.ff-681d1d1fc0fdb4f4807c9c92__control::placeholder {
    color: var(--graphite-gray) !important;
}

.ff-681d1d1fc0fdb4f4807c9c92__label {
    color: var(--indigo-black) !important;
}

.ff-681d1d1fc0fdb4f4807c9c92__button {
    background-color: var(--antique-gold) !important;
    color: var(--indigo-black) !important;
    border: none !important;
    font-weight: 600 !important;
}

.ff-681d1d1fc0fdb4f4807c9c92__button:hover {
    background-color: #c49a47 !important;
}

.ff-681d1d1fc0fdb4f4807c9c92__success-message {
    color: var(--indigo-black) !important;
}

.ff-681d1d1fc0fdb4f4807c9c92__error {
    color: var(--teal-wave) !important;
}

/* Footer styles */
.footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--graphite-gray);
    font-size: 0.9rem;
    margin-top: auto;
}

/* Responsive styles */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .intro h1 {
        font-size: 2rem;
    }

    .intro p {
        font-size: 1rem;
    }

    .waitlist-form {
        padding: 1.5rem;
    }

    .form-header h2 {
        font-size: 1.5rem;
    }
} 