/* ==========================================================================
   EDUCATORS PAGE STYLES
   ========================================================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--color-primary), #1a5ba0);
    color: var(--color-white);
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--color-white);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb .current {
    color: var(--color-white);
    font-weight: 500;
}

/* Section Introduction */
.section-intro {
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Educators Categories */
.educators-category {
    margin-bottom: 50px;
}

.category-title {
    font-size: 28px;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--color-secondary);
    display: inline-block;
}

/* Educator Cards */
.educator-card {
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.educator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.educator-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.educator-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.educator-card:hover .educator-image img {
    transform: scale(1.05);
}

.educator-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.educator-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.educator-qualification {
    font-size: 14px;
    color: var(--color-text);
    margin-bottom: 5px;
    font-style: italic;
}

.educator-role {
    font-size: 16px;
    color: var(--color-secondary);
    font-weight: 500;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(12, 60, 120, 0.05), rgba(245, 166, 35, 0.05));
    border-radius: 20px;
    margin: 40px 0;
}

.cta-content h2 {
    font-size: 32px;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn {
    margin: 0 10px;
    min-width: 180px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-header {
        padding: 40px 0 30px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .category-title {
        font-size: 24px;
    }
    
    .educator-image {
        height: 200px;
    }
    
    .educator-info {
        padding: 20px;
    }
    
    .cta-content h2 {
        font-size: 26px;
    }
    
    .cta-content .btn {
        display: block;
        margin: 10px auto;
        width: 200px;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 28px;
    }
    
    .breadcrumb {
        font-size: 13px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .category-title {
        font-size: 22px;
    }
    
    .educator-name {
        font-size: 18px;
    }
    
    .educator-qualification {
        font-size: 13px;
    }
    
    .educator-role {
        font-size: 15px;
    }
}
