/* Variables: Defined in assets/css/variables.css */
/* Custom Coming Soon Pages Styles */


.coming-soon-wrapper {
    background: linear-gradient(135deg, #F0F4FF 0%, var(--bp-bg) 100%);
    min-height: 80vh;
    /* Takes up most of the viewport but leaves room for footer */
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--bp-font);
    color: var(--bp-text-main);
    padding: 40px 20px;
    text-align: center;
}

.coming-soon-card {
    background: #ffffff;
    max-width: 600px;
    width: 100%;
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.05);
    /* Premium soft shadow */
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cs-icon-wrapper {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
}

.cs-icon-wrapper svg {
    width: 60px;
    height: 60px;
    fill: var(--bp-primary);
}

.cs-title {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    color: var(--bp-text-main);
}

.cs-subtitle {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0.5rem 0 1.5rem 0;
    background: linear-gradient(to right, var(--bp-primary), #8b5cf6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.cs-desc {
    font-size: 1.1rem;
    color: var(--bp-text-cloud);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 450px;
}

.cs-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #1e293b;
    /* Dark distinct button */
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

/* Mobile Optimization */
@media (max-width: 600px) {
    .coming-soon-wrapper {
        padding: 20px;
        align-items: flex-start;
        /* Better scrolling on small screens if content overflows */
        min-height: 60vh;
    }

    .coming-soon-card {
        padding: 40px 24px;
        margin-top: 40px;
    }

    .cs-icon-wrapper {
        width: 100px;
        height: 100px;
        margin-bottom: 1.5rem;
    }

    .cs-icon-wrapper svg {
        width: 50px;
        height: 50px;
    }

    .cs-title {
        font-size: 1.75rem;
    }

    .cs-subtitle {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .cs-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}