/* Mentorship Page Specific Styles */

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 3rem 0;
    background: white;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}

/* Mentors Grid */
.mentors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 1.5rem;
}

/* Mentor Card */
.mentor-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.mentor-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.mentor-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mentor-avatar {
    width: 60px;
    height: 60px;
    background-color: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.mentor-info {
    flex: 1;
}

.mentor-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.mentor-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.detail-icon {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.detail-text {
    color: #64748b;
}

.mentor-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.mentor-description {
    color: #64748b;
    font-size: 0.9rem;
    flex: 1;
    margin-right: 1rem;
}

/* User Avatar Styles (reusing from main.css but adding mentor-specific) */
.user-avatar {
    width: 40px;
    height: 40px;
    background-color: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mentors-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .mentor-header {
        flex-direction: column;
        text-align: center;
    }
    
    .mentor-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .mentor-description {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .mentor-card {
        padding: 1rem;
    }
    
    .detail-item {
        font-size: 0.85rem;
    }
}
