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

html, body {
    background: #e0ff6f !important;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    position: relative;
}

/* Ensure background extends to safe areas on mobile */
@supports (padding: max(0px)) {
    body {
        padding-top: max(0px, env(safe-area-inset-top));
        padding-bottom: max(0px, env(safe-area-inset-bottom));
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }
}

/* Force background on all elements */
html, body, .container, .main-content, .content-stack {
    background: #e0ff6f !important;
}

.container {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    background: #e0ff6f;
}



.logo {
    height: 8rem;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo.large {
    height: 8rem;
    width: auto;
    margin-bottom: 1rem;
}

/* Main content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #e0ff6f;
    min-height: 100vh;
}

.content-stack {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

/* Tagline */
.tagline {
    font-size: 1.5rem;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: 0.1em;
}

/* Newsletter section */
.newsletter-section {
    padding: 2.5rem;
}

.coming-soon {
    font-size: 1.25rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

/* Form styles */
.signup-form {
    margin-bottom: 1rem;
}

.input-group {
    display: flex;
    gap: 0.75rem;
    max-width: 400px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.email-input:focus {
    outline: none;
    box-shadow: 0 4px 12px rgba(53, 35, 151, 0.2);
    transform: translateY(-1px);
}

.email-input::placeholder {
    color: #999;
}

.signup-btn {
    padding: 0.875rem 1.5rem;
    background: #1a252f;
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.3);
}

.signup-btn:hover {
    background: #1a252f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.4);
}

.signup-btn:active {
    transform: translateY(0);
}

/* Status messages */
.status-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    min-height: 1.2em;
    transition: all 0.3s ease;
}

.status-message.success {
    color: #27ae60;
}

.status-message.error {
    color: #e74c3c;
}

/* Responsive design */
@media (max-width: 768px) {
    
    .logo {
        height: 2rem;
        width: auto;
    }
    
    .logo.large {
        height: 4rem;
        width: auto;
    }
    
    .tagline {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .newsletter-section {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .input-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .signup-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 1rem;
    }
    
    .tagline {
        font-size: 1.75rem;
    }
    
    .coming-soon {
        font-size: 1.1rem;
    }
    
    .newsletter-section {
        padding: 1.5rem;
    }
} 