/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
}

/* Main landing container */
.landing {
    background: url('./assets/background-image.png'), linear-gradient(135deg, #4ECDC4 0%, #26A69A 50%, #00897B 100%);
    background-size: cover, cover;
    background-position: center center, center center;
    background-attachment: fixed, fixed;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    position: relative;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    padding: 20px;
    position: relative;
}

/* Background decorative icon */
.background-icon {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 60vh;
    background-image: url('./assets/thriveon-icon-background.png');
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
    opacity: 0.25;
    z-index: 1;
}

/* Logo container */
.logo-container {
    display: flex;
    flex-direction: row;
    gap: 10px;
    height: 120px;
    width: 280px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out forwards;
    margin-bottom: 4rem;
}

.logo {
    width: 280px;
    height: 120px;
    background-image: url('./assets/thriveon-logo-color.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/* Coming Soon Message */
.message-container {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.3s;
}

.coming-soon-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.coming-soon-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Newsletter signup */
.signup-container {
    margin-top: 3rem;
    z-index: 2;
    position: relative;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.6s;
}

.signup-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    outline: none;
    transition: all 0.3s ease;
}

.email-input:focus {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.signup-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.signup-button:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.signup-message {
    text-align: center;
    margin-top: 1rem;
    color: white;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Responsive design */
@media (max-width: 768px) {
    .content-wrapper {
        gap: 2rem;
        padding: 1rem;
    }
    
    .coming-soon-title {
        font-size: 2.5rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1.1rem;
    }
    
    .logo-container {
        width: 240px;
        height: 100px;
    }
    
    .logo {
        width: 240px;
        height: 100px;
    }
    
    .background-icon {
        width: 300px;
        height: 180px;
        top: 70vh;
    }
    
    .signup-form {
        flex-direction: column;
        align-items: center;
    }
    
    .email-input {
        min-width: unset;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1rem;
    }
    
    .logo-container {
        width: 200px;
        height: 80px;
    }
    
    .logo {
        width: 200px;
        height: 80px;
    }
}

/* Animation effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success/error states */
.signup-message.success {
    color: #4CAF50;
}

.signup-message.error {
    color: #f44336;
}

.signup-form.submitted .email-input {
    background: rgba(255, 255, 255, 0.7);
}

.signup-form.submitted .signup-button {
    background: rgba(76, 175, 80, 0.8);
}

.signup-form.submitted .signup-button:hover {
    background: rgba(76, 175, 80, 0.9);
}
