/* path:filename app/static/css/landing.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.nowrap {
    white-space: nowrap;
}

.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.disclaimer {
    margin-top: 2rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
}

.disclaimer i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #f39c12;
}

.disclaimer p {
    font-size: 0.9rem;
    margin: 0;
    text-align: left;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4rem;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.hero-content {
    flex: 1;
    padding: 2rem;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
    display: flex;
    flex-direction: column;
}

.hero-welcome {
    font-size: 0.5em; /* Adjust this value to make it as small as you want */
    font-weight: normal;
    margin-bottom: 0.5rem;
}

.hero-app-name {
    font-size: 1em; /* This will be the same size as the original h1 */
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image svg {
    width: 100%;
    height: auto;
}

.features-section {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-description {
    font-size: 1rem;
    color: #34495e;
}

.feature-list {
    list-style-type: none;
    padding-left: 0;
}

.feature-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.cta-section {
    background-color: #3498db;
    color: #fff;
    padding: 4rem 2rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 4rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.beta-form {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 0.5rem; /* Adds space between elements */
}

.beta-input {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 4px 4px 4px 4px;
    width: 300px;
    max-width: 100%;
}

.beta-submit {
    padding: 0.5rem;
    font-size: 1rem;
    background-color: #2ecc71;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: auto; /* Remove full-width behavior */
    max-width: 150px;
    text-align: center;
    display: inline-block;
    line-height: 1.25;
    white-space: nowrap; /* Prevents text wrapping */
}

.beta-submit:hover {
    background-color: #27ae60;
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

.coming-soon-section {
    text-align: center;
}

.coming-soon-list {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.coming-soon-list li {
    background-color: #ecf0f1;
    color: #2c3e50;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin: 0.5rem;
    font-size: 0.9rem;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .landing-container {
        padding: 1rem; /* Reduce padding on smaller screens */
    }

    .hero-section {
        flex-direction: column;
        align-items: center;
    }

    .hero-content {
        padding: 1rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .feature-title {
        font-size: 1.25rem;
    }

    .feature-description, .feature-list li {
        font-size: 0.95rem;
    }

    .cta-section {
        padding: 3rem 1rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .beta-form {
        flex-direction: column;
        align-items: center;
    }

    .beta-input,
    .beta-submit {
        width: 100%;
        max-width: 300px;
        border-radius: 4px;
    }

    .beta-input {
        margin-bottom: 1rem;
    }

    .beta-submit {
        max-width: 100%;
    }

    .coming-soon-list {
        flex-direction: column;
        align-items: center;
    }

    .coming-soon-list li {
        width: 80%;
        text-align: center;
    }
}

/* Additional Small Screen Adjustments */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .cta-description {
        font-size: 0.95rem;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-description, .feature-list li {
        font-size: 0.9rem;
    }

    .cta-section {
        padding: 2.5rem 1rem;
    }

    .beta-input,
    .beta-submit {
        max-width: 100%;
    }

    .coming-soon-list li {
        width: 100%;
    }
}
