/* Landing Page Styles */

/* Programs Home Page */
.welcome-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.welcome-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #333;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.welcome-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.program-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;

}

.program-card:hover {
    transform: translateY(-4px);

}

.card-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.program-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.card-content h2 {
    font-size: 1.8rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #666;
    text-align: center;
}

.cta-button {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    font-weight: 400;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: #000;
    color: white;
    text-decoration: none;
}

/* Kids Home Page */
.cefr-scale {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
    padding: 1rem;
    position: relative;
}

.cefr-level {
    flex: 1;
    text-align: center;
    padding: 1rem;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cefr-level:hover {
    transform: scale(1.05);

}

.cefr-level::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    border-radius: 4px;
}

.pre-a1::before { background: #FFB6C1; }
.a1::before { background: #98FB98; }
.a2::before { background: #87CEEB; }
.b1::before { background: #DDA0DD; }
.b2::before { background: #F0E68C; }
.c1::before { background: #FFA07A; }

.cefr-level h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0.5rem 0;
}

.cefr-level p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.cefr-connector {
    flex: 0 0 2rem;
    height: 2px;
    background: #dee2e6;
    position: relative;
}

.cefr-connector::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    width: 10px;
    height: 10px;
    background: #dee2e6;
    border-radius: 50%;
}

/* Adults Home Page */
.adults-program-page {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #f8f9fa;
}

.section-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0056b3;
}

.program-section {
    padding: 4rem 0;
}

.card {
    border: none;
    border-radius: 15px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);

}

.card-title {
    color: #0056b3;
    font-weight: 600;
}

.table-responsive {
    margin-top: 2rem;
}

.table {
    border-radius: 10px;
    overflow: hidden;

}

.table thead {
    background-color: #007bff;
    color: white;
}

.table th, .table td {
    vertical-align: middle;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f8f9fa;
}

.table-hover tbody tr:hover {
    background-color: #e9ecef;
}

@media (max-width: 768px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .cefr-scale {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cefr-connector {
        display: none;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
} 