/* KCS Modern Theme Styles */

/* Base & Typography */
body {
    background-color: #ffffff;
    color: #333333;
    font-family: 'Inter', 'Roboto', sans-serif;
    line-height: 1.6;
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    color: #0A192F;
    font-weight: 700;
}

/* Coursera-inspired Course Cards */
.kcs-course-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0,0,0,0.04);
    height: 100%;
}

.kcs-course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.08);
}

.kcs-course-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.kcs-course-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.kcs-course-category {
    font-size: 0.8rem;
    font-weight: 600;
    color: #FF7A59;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.kcs-course-title {
    font-size: 1.1rem;
    margin: 0 0 10px 0;
    color: #0A192F;
    font-weight: 700;
    line-height: 1.4;
}

.kcs-course-meta {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.kcs-course-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* Buttons */
.kcs-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.1s;
    cursor: pointer;
}

.kcs-btn-primary {
    background-color: #FF7A59;
    color: #ffffff;
    border: none;
}

.kcs-btn-primary:hover {
    background-color: #e86343;
    color: #ffffff;
}

.kcs-btn-secondary {
    background-color: #0A192F;
    color: #ffffff;
    border: none;
}

.kcs-btn-secondary:hover {
    background-color: #112a4d;
    color: #ffffff;
}

/* Trust Section */
.kcs-trust-banner {
    background-color: #f8f9fa;
    padding: 40px 0;
}

/* Icons Feature Cards */
.kcs-feature-card {
    padding: 30px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.kcs-feature-icon {
    font-size: 2.5rem;
    color: #FF7A59;
    margin-bottom: 15px;
}

/* Mobile First Adjustments */
@media (max-width: 768px) {
    .kcs-course-card-image {
        height: 160px;
    }
    
    h1 {
        font-size: 2rem;
    }
}
