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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #F6F7F1;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header and Logo */
.header {
    padding:  0 0 0 0;
    text-align: center;
}

.logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}

.logo-image {
    height: 500px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

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

/* Main content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0px 0 0px 0;
}

.hero {
    margin-bottom: 20px;
    margin-top: -20px;
    max-width: 800px;
    padding-bottom: 30px;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: #D0D0C8;
}

.tagline {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out;
}

.subtitle {
    font-size: 1.3rem;
    line-height: 1.5;
    color: #4a5568;
    margin-bottom: 0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.subtitle em {
    font-style: italic;
    color: #2d3748;
}

.subtitle strong {
    font-weight: 700;
    color: #1a1a1a;
}

/* Coming Soon Section */
.coming-soon {
    max-width: 500px;
    width: 100%;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.coming-soon h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.coming-soon-text {
    display: none;
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

/* Email Signup Form */
.email-signup {
    display: none;
    width: 100%;
}

.input-group {
    display: flex;
    gap: 0;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.email-input {
    flex: 1;
    padding: 18px 24px;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    border-right: none;
    outline: none;
    background: #ffffff;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.email-input:focus {
    border-color: #1a1a1a;
}

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

.submit-btn {
    padding: 18px 32px;
    background: #1a1a1a;
    color: white;
    border: 2px solid #1a1a1a;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
}

.submit-btn:hover {
    background: #2d3748;
    border-color: #2d3748;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.privacy-note {
    font-size: 0.9rem;
    color: #718096;
    margin-top: 15px;
}

/* Footer */
.footer {
    padding: 25px 0 40px;
    text-align: center;
    margin-top: 10px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: #EEEEE8;
    border-top: 1px solid #E0E0DA;
    z-index: -1;
}

.social-links {
    display: none;
    justify-content: center;
    gap: 24px;
    margin-bottom: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 12px;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.footer-text {
    color: #718096;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 30px 0 40px;
    }
    
    .logo-image {
        height: 500px;
    }
    
    .tagline {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .coming-soon h3 {
        font-size: 2rem;
    }
    
    .input-group {
        flex-direction: column;
        border-radius: 12px;
    }
    
    .email-input {
        border-right: 2px solid #e2e8f0;
        border-bottom: none;
        border-radius: 12px 12px 0 0;
    }
    
    .submit-btn {
        border-top: none;
        border-radius: 0 0 12px 12px;
    }
    
    .social-links {
        gap: 16px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .tagline {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .coming-soon h3 {
        font-size: 1.7rem;
    }
    
    .email-input,
    .submit-btn {
        padding: 16px 20px;
    }
}

/* Success state for form */
.form-success .input-group {
    border-color: #48bb78;
}

.form-success .email-input {
    border-color: #48bb78;
}

.form-success .submit-btn {
    background: #48bb78;
    border-color: #48bb78;
}

/* Loading state */
.submit-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.submit-btn.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 