/**
 * Courses Coming Soon Page Styles
 *
 * Simple, clean layout for the courses waitlist page.
 * @package Yi
 */

.courses-main {
    background: #f8f6f2;
    min-height: 60vh;
}

.courses-coming-soon {
    padding: 60px 24px 80px;
}

.coming-soon-container {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.coming-soon-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    line-height: 1;
}

.courses-coming-soon h1 {
    font-family: var(--font-secondary);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a2e4a;
    margin-bottom: 20px;
}

.coming-soon-desc {
    font-size: 1.05rem;
    color: #5a6a7e;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Feature preview cards */
.coming-soon-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
    text-align: left;
}

.feature-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(46, 78, 126, 0.08);
}

.feature-item strong {
    display: block;
    font-size: 0.95rem;
    color: #1a2e4a;
    margin-bottom: 6px;
}

.feature-item span {
    font-size: 0.85rem;
    color: #7a8a9e;
    line-height: 1.5;
}

/* Waitlist section */
.waitlist-section {
    background: #ffffff;
    padding: 36px 32px;
    border-radius: 12px;
    border: 1px solid rgba(46, 78, 126, 0.08);
    margin-bottom: 40px;
}

.waitlist-section h2 {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a2e4a;
    margin-bottom: 8px;
}

.waitlist-section > p {
    font-size: 0.95rem;
    color: #5a6a7e;
    margin-bottom: 20px;
}

.waitlist-form {
    display: flex;
    gap: 10px;
    max-width: 440px;
    margin: 0 auto 12px;
}

.waitlist-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(46, 78, 126, 0.15);
    border-radius: 8px;
    font-size: 1rem;
    color: #1a2e4a;
    outline: none;
    transition: border-color 0.2s ease;
}

.waitlist-input:focus {
    border-color: #2e4e7e;
}

.waitlist-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #2e4e7e, #1a3460);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.waitlist-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(46, 78, 126, 0.3);
}

.waitlist-note {
    font-size: 0.8rem;
    color: #9aa5b4;
    font-style: italic;
}

/* Meanwhile links */
.coming-soon-meanwhile h3 {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    color: #1a2e4a;
    margin-bottom: 8px;
}

.coming-soon-meanwhile > p {
    font-size: 0.95rem;
    color: #5a6a7e;
    margin-bottom: 16px;
}

.meanwhile-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.meanwhile-link {
    padding: 10px 20px;
    border: 2px solid #2e4e7e;
    border-radius: 8px;
    color: #2e4e7e;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.meanwhile-link:hover {
    background: rgba(46, 78, 126, 0.06);
    transform: translateY(-1px);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .coming-soon-features {
        grid-template-columns: 1fr;
    }

    .waitlist-form {
        flex-direction: column;
    }

    .meanwhile-links {
        flex-direction: column;
        align-items: center;
    }
}
